-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
32 lines (32 loc) · 698 Bytes
/
app.json
File metadata and controls
32 lines (32 loc) · 698 Bytes
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
{
"name": "Formula One Prediction Bot",
"description": ".",
"image": "heroku/python",
"repository": "https://github.com/marc-doblefilo/FormulaOnePredictionBot",
"keywords": ["python"],
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"env": {
"BOT_TOKEN": {
"description": "The secret bot token.",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Please re-enter your App Name from the top.",
"required": true
},
"SECRET_TOKEN": {
"description": "Random seed",
"generator": "secret"
}
},
"scripts": {
"postdeploy": "python webhook.py"
}
}