blob: 2c84a504704343e4776831e34e0205a2ae4a7361 [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')
sys.path.append('./xdata/settings')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "production")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()