-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
33 lines (33 loc) · 891 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
{
"name": "VisualPing to Telegram Bot",
"description": "A Telegram bot to get VisualPing updates through webhooks",
"buildpacks": [
{
"url": "heroku/python"
}
],
"repository": "https://github.com/greenled/visualpingtotelegrambot",
"keywords": [
"python",
"django",
"telegram",
"visualping"
],
"env": {
"SECRET_KEY": {
"description": "The secret key for the Django application.",
"generator": "secret"
},
"TELEGRAM_BOT_TOKEN": {
"description": "Telegram bot token"
},
"DEBUG": {
"description": "Wether or not to enable debug mode",
"value": "False"
},
"DISABLE_COLLECTSTATIC": {
"description": "Disable static assets collection",
"value": "1"
}
}
}