import os
import sys

os.environ['PYTHON_EGG_CACHE'] = '/tmp'

os.environ["DJANGO_SETTINGS_MODULE"] = "LeakLessMonitor.settings.production"

path="var/www/html/leakless-monitor"
if path not in sys.path:
    sys.path.append(path)

path="var/www/html/leakless-monitor/LeakLessMonitor"
if path not in sys.path:
    sys.path.append(path)

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
