-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
app.json
31 lines (31 loc) · 1.06 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
{
"name": "Discord Game Server Monitor",
"description": "📺 A discord bot that monitors your game server and tracks the live data of your game servers.",
"repository": "https://github.com/DiscordGSM/GameServerMonitor",
"logo": "https://discordgsm.com/android-chrome-192x192.png",
"keywords": ["game", "python", "discord", "discord-bot", "slash-commands", "discordgsm", "game-server-monitoring"],
"env": {
"HEROKU_APP_NAME": {
"description": "Heroku App name. Same as the app name set above.",
"value": ""
},
"APP_TOKEN": {
"description": "Discord Bot Token. Learn more: https://discordgsm.com/guide/how-to-get-a-discord-bot-token",
"value": ""
},
"WHITELIST_GUILDS": {
"description": "Discord Guild ID, if more than one, separated by the semi colon ;",
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"addons": [
{
"plan": "heroku-postgresql"
}
]
}