forked from Abhijith14/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
46 lines (46 loc) · 1.43 KB
/
app.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
{
"name": "BUDDYAI",
"description": "An easy to install bot for Discord - DM to contact mods!",
"repository": "https://github.com/Abhijith14/Discord-Bot",
"author": {
"name": "ABHIJITH UDAYAKUMAR",
"GitHub": "https://github.com/Abhijith14"
},
"env": {
"TOKEN": {
"description": "Your discord bot's token.",
"value": "",
"required": true
},
"CLIENT_ID": {
"description":"Your discord bot's client id.",
"value": "",
"required": true
},
"AUDIOCHANNEL_ID": {
"description": "The id of audio channel bot can talk to.",
"value": "",
"required": true
},
"Channels_Valid": {
"description": "A list of comma-separated text-channels used for the bot to interact. ('general' recommended)",
"value": ["general"],
"required": true
},
"TIMEZONE": {
"description": "Your Timezone for python pytz package.",
"value": "Asia/Kolkata",
"required": true
},
"GUILD_ID": {
"description": "The id for the server you are hosting this bot for.",
"value": "",
"required": true
},
"GITHUB_TOKEN": {
"description": "A github personal access token with the repo scope.",
"value": "",
"required": false
}
}
}