apache/django.wsgi
author Shantanu <shantanu@fossee.in>
Wed, 21 Oct 2009 16:25:00 +0530
changeset 34 b0acf2caa3d5
parent 19 eeac221a9a3f
permissions -rwxr-xr-x
Added robots.txt file.

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