forked from jacklul/inlinegamesbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1 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
{
"name": "Inline Games",
"description": "A Telegram bot providing games that can be played in any chat.",
"repository": "https://github.com/jacklul/inlinegamesbot",
"logo": "https://raw.githubusercontent.com/jacklul/inlinegamesbot/master/logo.png",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
],
"addons": [
"heroku-postgresql"
],
"env": {
"BOT_TOKEN": {
"description": "Bot API token obtained from @BotFather",
"value": ""
},
"BOT_USERNAME": {
"description": "Bot username (without '@' symbol)",
"value": ""
},
"BOT_WEBHOOK": {
"description": "Webhook URL (YOURAPPNAME must match app name entered earlier)",
"value": "https://YOURAPPNAME.herokuapp.com"
},
"BOT_SECRET": {
"description": "Secret variable used to secure the web hook",
"generator": "secret"
},
"BOT_ADMIN": {
"description": "Admin's Telegram ID",
"value": "",
"required": false
}
}
}