-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.example.json
52 lines (52 loc) · 1.06 KB
/
config.example.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
{
"server": {
"port": 3000
},
"bypass_steam_login": false,
"sql": {
"host": "",
"username": "",
"password": "",
"database": ""
},
"redis": {
"host": "127.0.0.1:6379",
"password": "",
"database": 0
},
"steam": {
"app_id": 980610,
"publisher_key": "",
"api_key": ""
},
"discord_webhooks": {
"anti_cheat": "",
"private_chat": ""
},
"chat_channels": [
{
"name": "#first-places",
"description": "Players who achieve a first place rank on a map are displayed here",
"admin_only": false,
"auto_join": true,
"limited_chat": true,
"discord_webhook": ""
},
{
"name": "#admin",
"description": "Super secret channel for the evil dictators",
"admin_only": true,
"auto_join": true,
"limited_chat": true,
"discord_webhook": ""
},
{
"name": "#quaver",
"description": "General discussion about Quaver",
"admin_only": false,
"auto_join": true,
"limited_chat": false,
"discord_webhook": ""
}
]
}