django.wsgi
author nishanth
Sat, 05 Jun 2010 16:39:31 +0530
branchanoop
changeset 35 20d3b4230e4f
parent 27 48a86d8956f7
child 36 e291915aded8
permissions -rw-r--r--
modified db path and templates dir path

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