django.wsgi
author anoop
Fri, 04 Jun 2010 14:59:14 +0530
branchanoop
changeset 30 11f828503666
parent 27 48a86d8956f7
child 36 e291915aded8
permissions -rw-r--r--
changed the theme.

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