web/hgbook/run.wsgi~
changeset 0 8083d21c0020
child 1 672eaaab9204
equal deleted inserted replaced
-1:000000000000 0:8083d21c0020
       
     1 import os
       
     2 import sys
       
     3 import django
       
     4 sys.path.append('/home/amit/hgbook-alqua/web')
       
     5 sys.path.append('/home/amit/hgbook-alqua/web/hgbook/comments')
       
     6 os.environ['DJANGO_SETTINGS_MODULE'] = 'hgbook.settings'
       
     7 application = django.core.handlers.wsgi.WSGIHandler()
       
     8 
       
     9 
       
    10 
       
    11