-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeployment.js.sample
More file actions
46 lines (43 loc) · 1.06 KB
/
Copy pathdeployment.js.sample
File metadata and controls
46 lines (43 loc) · 1.06 KB
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
41
42
43
44
45
46
module.exports = {
mode: 'dev',
publicIP: '171.65.102.104',
production: {
db: 'master',
webserver: {
port:3000,
adminPort:3001,
name: 'InternalWeb1',
ident:'b3cagcde2684ebd2cba325555ec2703b',
key:null,
},
controller: {port:3200},
liveLabTime: 60 * 1000,
liveMuseumLabTime: 60 * 1000,
},
stage: {
db: 'stage',
webserver: {
port:4000,
adminPort:4001,
name: 'InternalWeb1',
ident:'b3cagcde2684ebd2cba325555ec2703b',
key:null,
},
controller: {port: 4200},
liveLabTime: 60 * 1000,
liveMuseumLabTime: 60 * 1000,
},
dev: {
db: 'dev',
webserver: {
port:5000,
adminPort:5001,
name: 'InternalWeb1',
ident:'b3cagcde2684ebd2cba325555ec2703b',
key:null,
},
controller: {port: 5200},
liveLabTime: 15 * 1000,
liveMuseumLabTime: 15 * 1000,
},
}