cablegates/wsgi/django.wsgi

29 lines
749 B
Text
Raw Normal View History

2009-10-09 16:09:11 +02:00
# django.wsgi
import os
import sys
import site
2010-04-29 14:29:13 +03:00
project_module = 'pandora'
2009-10-09 16:09:11 +02:00
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
#using virtualenv's activate_this.py to reorder sys.path
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
execfile(activate_this, dict(__file__=activate_this))
sys.path.append(root_dir)
sys.path.append(os.path.join(root_dir, project_module))
#reload if this django.wsgi gets touched
2010-01-17 11:18:33 +13:00
from oxdjango import monitor
2009-10-09 16:09:11 +02:00
monitor.start(interval=1.0)
monitor.track(os.path.abspath(os.path.dirname(__file__)))
os.environ['DJANGO_SETTINGS_MODULE'] = project_module + '.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()