-
Notifications
You must be signed in to change notification settings - Fork 9
/
app.json
36 lines (36 loc) · 946 Bytes
/
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
{
"name": "Telegram Quiz Bot",
"description": "A PTB bot, which can easily be deployed to Heroku.",
"repository": "https://github.com/infinity-plus/telegram_quiz_bot",
"logo": "",
"keywords": [
"python",
"ptb",
"telegram",
"python-telegram-bot"
],
"image": "heroku/python",
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"env": {
"TOKEN": {
"description": "Bot API Key from BotFather https://t.me/BotFather"
},
"SHEET1": {
"description": "API key from https://sheet.best"
},
"SHEET2": {
"description": "API key from https://sheet.best"
},
"HEROKU": {
"description": "Heroku app link. Type App Name to get link."
},
"OWNER": {
"description": "Telegram ID of the bot owner."
}
}
}