forked from Dragios/Discord-Bot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenv.json
47 lines (47 loc) · 1.22 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"BAB_CUSTOM_PLAYING_STATUSES_ENABLED": {
"description": "Whether or not to load custom playing statuses from Data/PlayingStatuses.json.",
"default": "false",
"validators": [
"boolean"
]
},
"BAB_TOKEN": {
"description": "The bot token used to connect to the Discord API."
},
"BAB_LOG_CHANNEL_ID": {
"description": "The snowflake ID of the Discord channel to send log messages to.",
"validators": [
"numeric"
]
},
"BAB_SHOWCASE_CHANNEL_ID": {
"description": "The snowflake ID of the Discord channel to send mod showcases to.",
"validators": [
"numeric"
]
},
"BAB_VERIFICATION_CHANNEL_ID": {
"description": "The snowflake ID of the Discord channel to moderate as a verification channel.",
"validators": [
"numeric"
]
},
"BAB_WELCOME_CHANNEL_ID": {
"description": "The snowflake ID of the Discord channel to refer to as a welcome channel.",
"validators": [
"numeric"
]
},
"BAB_PREFIX": {
"description": "The prefix to use before commands.",
"default": "."
},
"BAB_INVITE_LINK": {
"required": false,
"description": "The invite link to send when unbanning users.",
"validators": [
"url"
]
}
}