procfile heroku django

web: gunicorn yourapp.wsgi Explanation: This line in the Procfile specifies the command to run the Gunicorn server and pass your Django application's WSGI module as an argument.

Let me know if you have any further questions.