-
Notifications
You must be signed in to change notification settings - Fork 9
/
app.json
38 lines (38 loc) · 1.15 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
{
"name": "co-pilot",
"description": "Co-Pilot is a discord Bot designed to be the all-in-one, open-source Discord bot that handles all your server needs.",
"repository": "https://github.com/SlaughterBlade/Co-Pilot",
"keywords": ["discord", "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
},
"CLIENTID": {
"description": "Bot client/application ID - optional, for slash commands",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1
},
"web": {
"quantity": 0
}
}
}