parent
baf7140c76
commit
6264b22311
@ -1 +1,2 @@ |
|||||||
|
release: flask db upgrade |
||||||
web: gunicorn {{cookiecutter.app_name}}.app:create_app\(\) -b 0.0.0.0:$PORT -w 3 |
web: gunicorn {{cookiecutter.app_name}}.app:create_app\(\) -b 0.0.0.0:$PORT -w 3 |
||||||
|
@ -0,0 +1,30 @@ |
|||||||
|
{ |
||||||
|
"name": "{{cookiecutter.app_name}}", |
||||||
|
"repository": "https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.app_name}}", |
||||||
|
"env": { |
||||||
|
"SECRET_KEY": { |
||||||
|
"description": "SECRET_KEY.", |
||||||
|
"generator": "secret" |
||||||
|
}, |
||||||
|
"FLASK_APP": { |
||||||
|
"description": "FLASK_APP.", |
||||||
|
"value": "autoapp.py" |
||||||
|
} |
||||||
|
}, |
||||||
|
"buildpacks": [ |
||||||
|
{ |
||||||
|
"url": "heroku/nodejs" |
||||||
|
}, |
||||||
|
{ |
||||||
|
"url": "heroku/python" |
||||||
|
} |
||||||
|
], |
||||||
|
"addons": [ |
||||||
|
{ |
||||||
|
"plan": "heroku-postgresql", |
||||||
|
"options": { |
||||||
|
"version": "11" |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
} |
Loading…
Reference in new issue