-
Notifications
You must be signed in to change notification settings - Fork 98
/
app.json
32 lines (32 loc) · 797 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
{
"name": "Flask Boilerplate",
"description": "Simple but opinionated flask boilerplate with Postgres, Docker, and Heroku",
"keywords": [
"flask",
"postgresql"
],
"repository": "https://github.com/tko22/flask-boilerplate",
"success_url": "/",
"scripts": {
"postdeploy": "make heroku_setup"
},
"env": {
"FLASK_ENV": {
"description": "environment variable that determines the flask configuration - namely where to get postgres db url",
"value": "prod"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}