-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
51 lines (51 loc) · 1.61 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
47
48
49
50
51
{
"name": "Discord-MusicBot",
"description": "music go brr",
"repository": "https://github.com/TheAwesomeCoder05/MusicComp-v2",
"logo": "https://images-ext-1.discordapp.net/external/nqQs7Qe_SqbDwM9_3NFaXSHh2Bs2elPhpepSqyt8Eig/%3Fsize%3D4096/https/cdn.discordapp.com/avatars/928617705983082527/246a0c34f0d7f888ae46f7250832b245.png?width=627&height=627",
"keywords": [
"node",
"discord",
"youtube",
"music",
"bot",
"lavalink",
"dashboard"
],
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"Prefix": {
"description": "The Discord Bot Prefix",
"required": "true"
},
"Token": {
"description": "The Discord Bot Token (https://discord.com/developers/applications)",
"required": "true"
},
"Discord_ClientID": {
"description": "The Discord Bot ClientID",
"required": "true"
},
"Discord_ClientSecret": {
"description": "The Discord Bot ClientSecret",
"required": "true"
},
"Website": {
"description": "URL of your webserver (Example: https://domain.xyz). Change this if you want to use the web-dashboard.",
"value": "http://localhost"
},
"Spotify_ClientID": {
"description": "Spotify ClientID. This is used if you want to use Spotify features for your bot. (https://developer.spotify.com/dashboard/)",
"required": "true"
},
"Spotify_ClientSecret": {
"description": "Spotify ClientSecret. This is used if you want to use Spotify features for your bot. (https://developer.spotify.com/dashboard/)",
"required": "true"
}
}
}