Web service voor het LED-display
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.
 
 
 
 
 
 

29 lines
528 B

{
"name": "{{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:hobby-dev",
"options": {
"version": "11"
}
}
]
}