forked from DiscordGSM/DiscordGSM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1.47 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
{
"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.png",
"keywords": ["discordgsm", "query", "gameserver", "gameservers", "monitor", "dgsm", "game-servers", "discord", "gaming", "game"],
"env": {
"DGSM_TOKEN": {
"description": "Bot token - You can get it on https://discordapp.com/developers/applications/",
"value": ""
},
"SERVERS_JSON_URL": {
"description": "servers.json download url (You can set it later)",
"value": "https://github.com/DiscordGSM/DiscordGSM/raw/master/configs/servers.json",
"required": false
},
"DGSM_PREFIX": {
"description": "Bot commands prefix (Default: !)",
"value": "!"
},
"REFRESH_RATE": {
"description": "Discord embed refresh rate in seconds (Default: 15)",
"value": "15"
},
"PRESENCE_TYPE": {
"description": "Discord presence style (Default: 3)",
"value": "3"
},
"PRESENCE_RATE": {
"description": "Discord presence refresh rate in minutes (Default: 5)",
"value": "5"
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
}
]
}