web/hgbook/run.wsgi
author amit@thunder
Mon, 25 Jan 2010 18:56:45 +0530
changeset 0 8083d21c0020
child 1 672eaaab9204
permissions -rwxr-xr-x
The first commit of all the required files for the review app
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
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     4
sys.path.append('/home/amit/hgbook-alqua/web')
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     5
sys.path.append('/home/amit/hgbook-alqua/web/hgbook/comments')
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