"""
WSGI config for phendo_api 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.9/howto/deployment/wsgi/
"""

import os
import sys

#sys.path.append('/phendo-backend/phendo_python')
#sys.path.append('/phendo-backend/phendo_python/env/lib/python2.7/site-packages')
sys.path.append('/var/www/html/phendo-backend/phendo_python')
sys.path.append('/var/www/html//phendo-backend/phendo_python/env/lib/python2.7/site-packages')

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "phendo_api.settings_trialx")

application = get_wsgi_application()
