apache/django.wsgi
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 02 Oct 2009 11:23:44 -0400
changeset 19 eeac221a9a3f
parent 2 8d8ada9849be
permissions -rwxr-xr-x
Added conference app to system path.

import os
import sys

sys.path.append('/home/hg/repos/')
sys.path.append('/home/hg/repos/scipy/')

os.environ['DJANGO_SETTINGS_MODULE'] = 'scipy.settings'

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()