forked from dotnize/Dodong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (34 loc) · 979 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
{
"name": "Dodong",
"description": "A Discord music bot written using discord.js and discord-player.js",
"repository": "https://github.com/nizeic/Dodong",
"keywords": ["discord", "music", "bot", "discordjs"],
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"PREFIX": {
"description": "Command prefix for the bot (default: -)",
"required": false
},
"BOTTOKEN": {
"description": "Bot token (https://discordjs.guide/preparations/setting-up-a-bot-application.html#your-token)",
"required": true
},
"GENIUSAPITOKEN": {
"description": "Genius.com Client Access Token (https://genius.com/api-clients) - Optional",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1
},
"web": {
"quantity": 0
}
}
}