blob: 30c06a303f29b96d8d67093649bfd4eda39ac406 [file] [log] [blame]
"""
WSGI config for xdata 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/1.6/howto/deployment/wsgi/
"""
import os, sys
sys.path.append('/var/www/op_task/xdata')
sys.path.append('/var/www/op_task')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "xdata.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()