-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsettings.js.example
40 lines (28 loc) · 1012 Bytes
/
settings.js.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
module.exports = {
// router IP
ip: '172.22.0.1',
port: '22',
// ignore emacs-related files when compiling templates
ignoreTemplates: [/.*~$/, /^#.*#$/],
// The root password for the newly configured routers
rootPassword: 'meshtheplanet',
// Clean templateStageDir and stageDir before running makenode
cleanStaging: true,
// settings for connection to the meshnode-database
// https://github.com/sudomesh/meshnode-database
nodeDB: {
url: 'https://secrets.peoplesopen.net',
username: 'deployer',
password: 'praisebob'
},
// where templates are staged before compilation
templateStageDir: 'templateStaging',
// length of automatically generated passwords
passLength: 20,
// where final files are staged before being packaged into an ipk
stageDir: 'staging',
// where ipks are saved
ipkDir: 'ipks',
// maintainer for generated ipk files
ipkMaintainer: "sudo mesh <[email protected]>"
};