procfile heroku code example
Example 1: heroku django procfile
web: gunicorn myproject.wsgi
Example 2: Procfile
web: gunicorn app:app
^ | ^
gunicorn as | main app name
server |
web: gunicorn myproject.wsgi
web: gunicorn app:app
^ | ^
gunicorn as | main app name
server |