You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
616 B
30 lines
616 B
{
|
|
"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"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|