-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
app.json
39 lines (39 loc) · 1.08 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
{
"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": {
"token": {
"description": "The Discord Bot Token (https://discord.com/developers/applications)",
"required": "true"
},
"clientId": {
"description": "The Discord Bot ClientID",
"required": "true"
},
"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"
}
}
}