forked from mrsmook/music-discord-heroku-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
26 lines (26 loc) · 740 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
{
"name": "Node.js Music Discord Bot",
"description": "A discord Node.js music app",
"repository": "https://github.com/mrsmook/music-discord-heroku-bot",
"logo": "https://img.icons8.com/color/452/nodejs.png",
"keywords": ["node", "discord", "youtube"],
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"env": {
"BOT_TOKEN": {
"description": "The token copied in the first section.",
"required": "true"
},
"BOT_YOUTUBE_TOKEN": {
"description": "The token copied in the second section.",
"required": "true"
},
"PREFIX": {
"description": "The prfix you want to use with the bot.",
"value": "!"
}
}
}