Files
caminus/caminus.wsgi
Trever Fischer 38d41a5113 Fix wsgi
2012-02-25 12:26:18 -05:00

10 lines
266 B
Python

import os, sys
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
sys.path.append(os.path.dirname(__file__))
os.environ['DJANGO_SETTINGS_MODULE'] = 'caminus.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()