heroku flask gunicorn code example
Example 1: procfile flask
Example of what the procfile might look like for a flask app:
web: gunicorn app.py app:app
Or maybe this is for the development app:
web: python app.py
Example 2: web: gunicorn app:app
web: gunicorn app:app