"""
WSGI config for itsdolphin 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, sys

from django.core.wsgi import get_wsgi_application

sys.path.append(r'/home/ubuntu/projects/ifolica/data')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "iFolica.settings")

application = get_wsgi_application()
