-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (33 loc) · 802 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
{
"name": "freeprogrammingbooks-bot",
"description": "Un-official bot of EbookFoundation/free-programming-books.",
"keywords": [
"python",
"opensource",
"telegram"
],
"repository": "https://github.com/LuigiImVector/freeprogrammingbooks-bot",
"env": {
"TOKEN": {
"description": "Telegram bot TOKEN (see @BotFather).",
"required": true
},
"URL_BOT": {
"description": "The url of the app with trailing slash: https://app-name.herokuapp.com/",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "13"
}
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}