-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
61 lines (61 loc) · 1.42 KB
/
config.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"PROD_ENV": {
"NodeFrame": {
"host": "localhost",
"ports": [
3000,
3001
],
"Cookie": {
"secure": false,
"maxAge": 86400000
}
},
"Memcached": {
"host": "localhost",
"port": 11211
},
"Mysql": {
"username": "root",
"password": null,
"database": "nodeframe",
"host": "127.0.0.1",
"pool": {
"max": 10,
"min": 0,
"idle": 10000
}
},
"Models": {
}
},
"comment": "Don't need to copy-past all config from prod, just write the diff only.",
"DEV_ENV": {
"NodeFrame": {
"host": "localhost",
"ports": [3000],
"Cookie": {
"secure": false,
"maxAge": 86400000
}
},
"Mysql": {
"username": "root",
"password": null,
"database": "nodeframe_dev",
"host": "127.0.0.1"
}
},
"LOCAL_ENV": {
"NodeFrame": {
"host": "localhost",
"ports": [3001]
},
"Mysql": {
"username": "root",
"password": null,
"database": "nodeframe_local",
"host": "127.0.0.1"
}
}
}