django.wsgi
author anoop
Tue, 27 Jul 2010 19:56:23 +0530
branchanoop
changeset 188 a537559a96c9
parent 36 e291915aded8
permissions -rw-r--r--
updated the matter for pre-Sage Days python workshop.

import os
import sys

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

os.environ['DJANGO_SETTINGS_MODULE'] = 'sage_days.settings_apache'

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