-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.53 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
{
"name": "Discord-MusicBot",
"description": "Very simple discord music bot with the discord.js with Song Name playing. It can able to play music with the song name",
"repository": "https://github.com/SudhanPlayz/Discord-MusicBot",
"logo": "https://cdn.discordapp.com/avatars/750613142488481843/e6326038dbe2243ca551ba5b6ecd8bf2.png?size=1024",
"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"
}
}
}