-
Notifications
You must be signed in to change notification settings - Fork 1
/
env.json
27 lines (26 loc) · 1003 Bytes
/
env.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
{
"development": {
"svr_url" : "http://localhost:3000",
"db_url" : "mongodb://localhost/location_based_chat",
"log_level" : "silent",
"env" : "development",
"socketio_log" : 1,
"socketio_transports" : ["websocket"]
},
"production": {
"svr_url" : "http://location-based-chat.herokuapp.com",
"db_url" : "mongodb://mwahab:[email protected]:10075/location_based_chat",
"log_level" : "silent",
"env" : "production",
"socketio_log" : 1,
"socketio_transports" : ["websocket", "flashsocket", "htmlfile", "xhr-polling", "jsonp-polling"]
},
"staging": {
"svr_url" : "http://location-based-chat-stag.herokuapp.com",
"db_url" : "mongodb://mwahab:[email protected]:10000/location_based_chat_stag",
"log_level" : "silent",
"env" : "staging",
"socketio_log" : 3,
"socketio_transports" : ["xhr-polling"]
}
}