I\'m trying to deploy a Flask app with Heroku. It\'s simple API. Works great local with foreman but I get error (log is below) when starts on heroku.
This is my app code
Is there actually a running dyno called web? It looks like you might have forgotten to scale your web dyno:
web
Add an entry like this in your Procfile:
heroku ps:scale web=1
You can use
heroku ps
to confirm that your web dyno is running.