-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.json
37 lines (37 loc) · 916 Bytes
/
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
{
"name": "vured",
"description": "A command-less high performance discord music bot",
"repository": "https://github.com/vured/vured-bot",
"logo": "https://i.imgur.com/Lh1wXda.png",
"keywords": [
"discord",
"discord-bot",
"kotlin"
],
"env": {
"BOT__TOKEN": {
"description": "The discord bot token",
"value": ""
},
"DISCORD__GUILD": {
"description": "Discord Guild ID",
"value": ""
},
"DISCORD__ACCESS_ROLE": {
"description": "Role ID that can access the bot",
"value": ""
},
"DISCORD__MUSIC_CHANNEL": {
"description": "Text-Channel ID for static message",
"value": ""
},
"DISCORD__LOG_CHANNEL": {
"description": "Text-Channel ID for logs",
"value": ""
},
"BOT__MAX_PLAYLIST_TRACKS": {
"description": "The maximum Tracks that can be in the queue",
"value": "100"
}
}
}