Files
caminus/caminus.wsgi
2012-02-20 19:48:01 -05:00

10 lines
264 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()