-
Notifications
You must be signed in to change notification settings - Fork 3
/
server-configs.js
38 lines (38 loc) · 981 Bytes
/
server-configs.js
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
module.exports = {
ibm: {
token: '84rdR1SCFwf5gboiqAsSrKBYCtRDkC7aMMMkOT0HpuZXWqqelCI4oT6FnH4wnn96',
port: 4200,
displayName: 'IBM',
staticDir: 'public',
company: 'IBM',
dbURL: 'mongodb://ajp:trainisland@ds227525.mlab.com:27525/cp-ui',
debug: true
},
redhat: {
token: 'AbxYJ8PhPE9jsTvY6YJmIPUBEMIg2x0VkqXB0s3oaWPyegZuQJKI7L6YFFCcXngt',
port: 4201,
displayName: 'RedHat',
staticDir: 'public',
company: 'RedHat',
dbURL: 'mongodb://ajp:trainisland@ds227525.mlab.com:27525/cp-ui',
debug: false
},
google: {
token: 'B7EWZXpVGrPxFQucZNELbCQyCPCVU9SRazs27ZBgYXZAcoqjxjx94hEWSwneY55i',
port: 4202,
displayName: 'Google',
staticDir: 'public',
company: 'Google',
dbURL: 'mongodb://ajp:trainisland@ds227525.mlab.com:27525/cp-ui',
debug: false
},
default: {
token: '',
port: 4200,
displayName: 'Default',
staticDir: 'public',
company: 'Default',
dbURL: 'mongodb://ajp:trainisland@ds227525.mlab.com:27525/cp-ui',
debug: false
}
}