"""
WSGI config for sopds project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
docs.djangoproject.com/en/1.9/howto/deployment/wsgi/
"""
import os
import sys
project_home = u'/var/www/sopds2'
if project_home not in sys.path:
sys.path.append(project_home)
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sopds.settings")
application = get_wsgi_application()