Set Heroku stack to heroku-16 in app.json

The graphviz buildpack does not support the new default `heroku-18`
stack yet. Until it does we have to fall back to the older stack.

 
This commit is contained in:
Dominik Sander 2018-09-22 11:37:40 +02:00
parent e81ae4a65c
commit 6773dcf31e

View file

@ -21,5 +21,6 @@
"postdeploy": "bundle exec rake db:migrate"
},
"addons": ["heroku-postgresql"],
"success_url": "/users/sign_up"
"success_url": "/users/sign_up",
"stack": "heroku-16"
}