]> git.0d.be Git - panikweb.git/commitdiff
add wsgi file
authorFrédéric Péters <fpeters@0d.be>
Tue, 3 Sep 2013 09:24:04 +0000 (11:24 +0200)
committerFrédéric Péters <fpeters@0d.be>
Tue, 3 Sep 2013 09:24:04 +0000 (11:24 +0200)
panikweb/wsgi.py [new file with mode: 0644]

diff --git a/panikweb/wsgi.py b/panikweb/wsgi.py
new file mode 100644 (file)
index 0000000..871f6ba
--- /dev/null
@@ -0,0 +1,8 @@
+#! /usr/bin/env python
+
+import os
+os.environ['DJANGO_SETTINGS_MODULE'] = 'panikweb.settings'
+
+import django.core.handlers.wsgi
+
+application = django.core.handlers.wsgi.WSGIHandler()