-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.sample.js
More file actions
38 lines (37 loc) · 790 Bytes
/
env.sample.js
File metadata and controls
38 lines (37 loc) · 790 Bytes
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
const fs = require('fs')
module.exports = {
servers: {
app: {
credentials: [{// You can setup many servers with one configuration
host: '0.0.0.0',
port: 22,
username: 'root',
privateKey: fs.readFileSync('/path/to/private/key').toString()
}],
kinds: ['nginx', 'node', 'mariadb'],
config: {
node: {
version: 6
},
mariadb: {
rootPassword: 'freeware',
username: 'minorm2',
password: 'freeware',
database: 'minorm2_example'
}
},
}
},
apps: {
app: {
port: 80,
env: {
NODE_ENV: 'production',
PORT: 3000,
MYSQL_USER: 'app',
MYSQL_PASS: 'freeware',
MYSQL_DB: 'app'
}
}
}
}