-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.js
46 lines (46 loc) · 1.31 KB
/
conf.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
39
40
41
42
43
44
45
46
module.exports = {
app: {
name: 'HeatWave'
, version: '0.1'
}
, hostname: {
development: 'http://localhost:3000'
, test: 'http://localhost:3001'
, beta: 'http://localhost:3000'
, production: 'http://localhost:3000'
}
, server: {
development: 'http://192.168.110.68:3000'
, test: 'http://192.168.110.68:3001'
, beta: 'http://192.168.110.68:3000'
, production: 'http://192.168.110.68:3000'
}
, mongo: {
url: {
development: 'mongodb://localhost:27017/'
, test: 'mongodb://localhost:27017/'
, beta: 'mongodb://localhost:27017/'
, production: 'mongodb://localhost:27017/'
}
, dbname: {
development: 'heatwave'
, test: 'heatwave-test'
, beta: ''
, production: ''
}
}
, redis: {
secret: {
development: ''
, test: ''
, beta: ''
, production: ''
}
, url: {
development: 'redis://localhost:9007/'
, test: 'redis://localhost:9007/'
, beta: ''
, production: 'redis://localhost:9007/'
}
}
};