forked from apsillers/lords-of-the-fey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
28 lines (23 loc) · 918 Bytes
/
config.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
module.exports = {
"mongoString":"mongodb://mongoUser:mongoPasswrd@mongodb.example.com:27017/databaseName",
"port": "8080",
"listeningIP":"0.0.0.0",
"sessionSecret":"!! <replace this with a random secret> !!",
"origin":"http://example.com:8080",
"facebook": {
"enabled": false,
"app_id":"<use tokens from https://developers.facebook.com>",
"app_secret":"<use tokens from https://developers.facebook.com>"
},
"twitter": {
"enabled": false,
"consumer_key":"<use tokens from https://apps.twitter.com>",
"consumer_secret":"<use tokens from https://apps.twitter.com>"
},
"google": {
"enabled": false,
"clientID": "<use tokens from https://console.developers.google.com>",
"clientSecret": "<use tokens from https://console.developers.google.com>"
},
"sourceLink":"https://github.com/apsillers/lords-of-the-fey"
}