diff --git a/get_together/wsgi.py b/get_together/wsgi.py index 42c801d..4feee6f 100644 --- a/get_together/wsgi.py +++ b/get_together/wsgi.py @@ -8,8 +8,10 @@ https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/ """ import os +import sys from django.core.wsgi import get_wsgi_application +sys.path.append(os.path.dirname(os.path.dirname(__file__))) os.environ.setdefault("DJANGO_SETTINGS_MODULE", "get_together.settings")