-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.json
49 lines (47 loc) · 920 Bytes
/
config.sample.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
{
"development": true,
"port": 3000,
"secret": "your secret",
"mobilesecret": "another secret",
"activationkey": "same here",
"superadmin": "[email protected]",
"bitly": {
"username": "your bit.ly username",
"token": "bit.ly api key"
},
"yo": {
"username" : "your yo username",
"token" : "yo api key"
},
"twitter": {
"consumer_key" : "",
"consumer_secret" : "",
"access_token" : "",
"access_token_secret": ""
},
"mail": {
"host": "mail.host.com",
"user": "[email protected]",
"pass": "password"
},
"db": {
"host": "localhost",
"port": 27017,
"user": "",
"pass": "",
"name": "conquest",
"max": 100,
"min": 1,
"timeout": 30000,
"log": false
},
"game": {
"maxPlayers": 30,
"win": 1000,
"countdown": 0.1,
"teams": ["alpha", "beta", "gamma"],
"map": {
"size": 4
}
}
}