diff --git a/surveillao.wsgi b/surveillao.wsgi new file mode 100644 index 0000000..e001bcf --- /dev/null +++ b/surveillao.wsgi @@ -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() +