apache/django.wsgi
author Shantanu <shantanu@fossee.in>
Wed, 21 Oct 2009 16:17:38 +0530
changeset 32 192ca2513f89
parent 19 eeac221a9a3f
permissions -rwxr-xr-x
Added changes suggested by Vimal.

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()