web/hgbook/run.wsgi
author amit@thunder
Fri, 05 Feb 2010 23:42:24 +0530
changeset 1 672eaaab9204
parent 0 8083d21c0020
permissions -rwxr-xr-x
Added some new html files that failed earlier during change from rst
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     1
import os
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     2
import sys
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     3
import django
1
672eaaab9204 Added some new html files that failed earlier during change from rst
amit@thunder
parents: 0
diff changeset
     4
sys.path.append('/home/amit/SEES-hacks/web')
672eaaab9204 Added some new html files that failed earlier during change from rst
amit@thunder
parents: 0
diff changeset
     5
sys.path.append('/home/amit/SEES-hacks/web/hgbook/comments')
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     6
os.environ['DJANGO_SETTINGS_MODULE'] = 'hgbook.settings'
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     7
import django.core.handlers.wsgi
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     8
application = django.core.handlers.wsgi.WSGIHandler()
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     9
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    10
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    11
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    12