-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
app.json
38 lines (38 loc) · 1.29 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": "Game Server Watcher",
"description": "A simple discord/telegram/slack bot that can be hosted on a free service to monitor your game servers and players in style. 😎",
"website": "https://github.com/a-sync/game-server-watcher",
"repository": "https://github.com/a-sync/game-server-watcher",
"logo": "https://github.com/a-sync/game-server-watcher/assets/14183614/66a8ffa8-c547-4f9c-b312-4c855da80c20",
"env": {
"SECRET": {
"description": "Admin secret",
"required": true
},
"REFRESH_TIME_MINUTES": {
"description": "Game server info refresh interval in minutes",
"required": true,
"value": "2"
},
"DISCORD_BOT_TOKEN": {
"description": "Discord bot token",
"required": false
},
"TELEGRAM_BOT_TOKEN": {
"description": "Telegram bot token",
"required": false
},
"SLACK_BOT_TOKEN": {
"description": "Slack bot token",
"required": false
},
"SLACK_APP_TOKEN": {
"description": "Slack app token",
"required": false
},
"STEAM_WEB_API_KEY": {
"description": "Steam web API key",
"required": false
}
}
}