forked from DiscordGSM/DiscordGSM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.57 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
{
"name": "Discord Game Server Monitor",
"description": "Monitor your game servers on Discord",
"repository": "https://github.com/DiscordGSM/DiscordGSM",
"logo": "https://github.com/DiscordGSM/DiscordGSM/raw/master/images/discordgsm-heroku.png",
"keywords": ["discordgsm", "query", "gameserver", "gameservers", "monitor", "dgsm", "game-servers", "discord", "gaming", "game"],
"env": {
"HEROKU_APP_NAME": {
"description": "Heroku app name - same as the app name set above",
"value": ""
},
"DGSM_PREFIX": {
"description": "Bot commands prefix (Default: !)",
"value": "!"
},
"DGSM_TOKEN": {
"description": "Bot token - You can get it on https://discordapp.com/developers/applications/",
"value": ""
},
"PRESENCE_RATE": {
"description": "Discord presence refresh rate in minutes (Default: 5)",
"value": "5"
},
"PRESENCE_TYPE": {
"description": "Discord presence style (Default: 3)",
"value": "3"
},
"REFRESH_RATE": {
"description": "Discord embed refresh rate in seconds (Default: 15)",
"value": "15"
},
"SERVERS_JSON": {
"description": "servers.json data (Default: []) Wiki: https://github.com/DiscordGSM/DiscordGSM/wiki/Edit-servers.json",
"value": "[]"
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
}
]
}