-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathapp.json
58 lines (58 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "Idle-RPG-Bot",
"description": "This is a project to practice and learn more on how to create a bot for Discord and to practice javascript. Anybody who is willing to join in on this project is welcome to do so!",
"keywords": [
"Heroku",
"Idle-RPG-Bot",
"Idle-RPG",
"Discord Bot",
"Entertainment",
"RPG",
"Moderation",
"sizzlorox",
"JavaScript",
"Selfhosting"
],
"repository": "https://github.com/sizzlorox/Idle-RPG-Bot",
"addons": [
{
"plan": "mongolab:sandbox"
}
],
"env": {
"DISCORD_BOT_LOGIN_TOKEN": {
"description": "Get your BOT TOKEN from https://discordapp.com/developers/applications/.",
"required": true
},
"DISCORD_BOT_OPERATORS_ID": {
"description": "Specifies which users can use the system commands of Idle-RPG-Bot. You can add multiple by doing: <userid>, <seconduserid>.",
"required": false,
"value": "123456789, 987654321"
},
"MIN_TIMER": {
"description": "Minimal Timer in minutes",
"required": true,
"value": "2"
},
"MAX_TIMER": {
"description": "Maximum Timer in minutes",
"required": true,
"value": "5"
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
},
"web": {
"quantity": 0,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}