-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathconfig.json
39 lines (39 loc) · 933 Bytes
/
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
{
"logging": {
"level": "trace",
"filename": "bot.log",
"quiet": true,
"overwrite": false,
"use_color": true,
"http": {
"enable": true,
"filename": "http.log"
},
"disable_modules": ["WEBSOCKETS", "USER_AGENT"]
},
"discord": {
"token": "YOUR-BOT-TOKEN",
"default_prefix": {
"enable": false,
"prefix": "YOUR-COMMANDS-PREFIX"
}
},
"slack": {
"app_token": "YOUR-APP-TOKEN",
"bot_token": "YOUR-BOT-TOKEN",
"user_token": "YOUR-USER-TOKEN",
"client_id": "YOUR-CLIENT-ID",
"client_secret": "YOUR-CLIENT-SECRET",
"signing_secret": "YOUR-SIGNING-SECRET"
},
"github": {
"username": "YOUR-GITHUB-USERNAME",
"token": "YOUR-PERSONAL-ACCESS-TOKEN"
},
"reddit": {
"username": "YOUR-REDDIT-USERNAME",
"password": "YOUR-REDDIT-PASSWORD",
"client_id": "REDDIT-CLIENT-ID",
"client_secret": "REDDIT-CLIENT-SECRET"
}
}