django.wsgi
author anoop
Thu, 03 Jun 2010 19:08:31 +0530
branchanoop
changeset 27 48a86d8956f7
child 36 e291915aded8
permissions -rw-r--r--
added base.html and did needed changes, (forgot to add files in previous commit).

import os
import sys

sys.path.append('/var/www/html')

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

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