-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
37 lines (37 loc) · 1.04 KB
/
app.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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/AzeMusic/RocksGamebot",
"logo": "https://telegra.ph/file/469ad9da3363eb0dc7514.jpg",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
],
"addons": [
"heroku-postgresql"
],
"env": {
"BOT_TOKEN": {
"description": "Bot API token obtained from @BotFather",
"value": "5348513812:AAGF8IRMKMUN-TD2T9kLNoQCPGeXhks6J2s"
},
"BOT_USERNAME": {
"description": "Bot username (without '@' symbol)",
"value": "RocksGameAzBot"
},
"BOT_WEBHOOK": {
"description": "Webhook URL (YOURAPPNAME must match app name entered earlier)",
"value": "https:// .herokuapp.com"
},
"BOT_SECRET": {
"description": "Secret variable used to secure the web hook",
"generator": "secret"
},
"BOT_ADMIN": {
"description": "Admin's Telegram ID",
"value": "1924693109",
"required": false
}
}
}