python – Deploying a Django application to Heroku – No module named ‘django_project.wsgi
I’m trying to deploy a django application but I keep getting this error: ModuleNotFoundError: No module named ‘django_project.wsgi’ In fact, here’s the full log: 2022-05-13T14:52:06.436735+00:00 app[web.1]: Traceback (most recent call last): 2022-05-13T14:52:06.436735+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.9/site-packages/gunicorn/arbiter.py”, line 589, in spawn_worker 2022-05-13T14:52:06.436736+00:00 app[web.1]: worker.init_process() 2022-05-13T14:52:06.436736+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.9/site-packages/gunicorn/workers/base.py”, line 134, in init_process 2022-05-13T14:52:06.436736+00:00 app[web.1]: self.load_wsgi() 2022-05-13T14:52:06.436737+00:00 app[web.1]: … Read more