I'm trying to deploy Django on Cpanel shared hosting .. after creating the app and everything was going okay following this guide, it never opens and it gives me this error :
Traceback (most recent call last):
File "/home/wateopjw/water_maps_dashboard/passenger_wsgi.py", line 1, in <module>
from water_maps.wsgi import application
ImportError: No module named water_maps.wsgi
my passenger_wsgi.py
from water_maps.wsgi import application
my wsgi.py file
"""
WSGI config for water_maps.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'water_maps.settings')
application = get_wsgi_application()
Project Structure
