[Fixed]-Django & Heroku – ImportError: No module named gettingstarted.wsgi

24👍

You are referencing the gettingstarting wsgi module (file) which is nowhere inside your project.

Instead change the Procfile contents to:

web: gunicorn PROJECT_NAME.wsgi --log-file -
👤nik_m

Leave a comment