I am trying to deploy a Django app on Heroku. The deployment works but when I run the web page I get the following error:
ImportError: No module named hello.wsgi
My Proc file reads as: web:
gunicorn hello.wsgi --log-file -
I would appreciate suggestions if anyone knows why I get this error.