Hello,
I have made sure to provide the full path for my settings.py in the .wsgi file, however it still cannot be found on my system path. Am I doing something wrong here? I have been at this for quite awhile now ... here is my wsgi file:
import os
import sys
path = '/home/jordanhourani/killed-animal-reporter/killedanimalreporter'
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'killedanimalreporter.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()