2017-12-26 17:46:27 +01:00
|
|
|
"""
|
|
|
|
WSGI config for get_together project.
|
|
|
|
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
|
|
|
|
For more information on this file, see
|
|
|
|
https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
2018-01-20 22:52:19 +01:00
|
|
|
import sys
|
2017-12-26 17:46:27 +01:00
|
|
|
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
2018-01-20 22:52:19 +01:00
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
|
2017-12-26 17:46:27 +01:00
|
|
|
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "get_together.settings")
|
|
|
|
|
|
|
|
application = get_wsgi_application()
|