wsgi script

This commit is contained in:
Thomas NOËL 2011-04-21 22:54:20 +02:00
parent b2000edb89
commit 9b6a608b1f
1 changed files with 13 additions and 0 deletions

13
surveillao.wsgi Normal file
View File

@ -0,0 +1,13 @@
# just an example
import os, sys
sys.path.append('/home/thomas/surveillao.ve/')
sys.path.append('/home/thomas/surveillao.ve/surveillao/')
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()