summaryrefslogtreecommitdiffstats
path: root/wekan_py/wsgi.py
diff options
context:
space:
mode:
authorSpeaKeasY <speakeasysky@gmail.com>2018-05-20 18:38:33 +0000
committerSpeaKeasY <speakeasysky@gmail.com>2018-05-20 18:38:33 +0000
commite5c6da5a3919158d8164ae1e0b4a8567da71249d (patch)
tree7615690fbafe620b01ac824bcd4ed835546ab6fe /wekan_py/wsgi.py
parent3075791a931998d36ec21a35d2d9057defd24453 (diff)
downloadwekan-e5c6da5a3919158d8164ae1e0b4a8567da71249d.tar.gz
wekan-e5c6da5a3919158d8164ae1e0b4a8567da71249d.tar.bz2
wekan-e5c6da5a3919158d8164ae1e0b4a8567da71249d.zip
Added initial DJango 2.0.5 project config with pyjade, python 3.6.5 venv.
Diffstat (limited to 'wekan_py/wsgi.py')
-rw-r--r--wekan_py/wsgi.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/wekan_py/wsgi.py b/wekan_py/wsgi.py
new file mode 100644
index 00000000..57cc22d0
--- /dev/null
+++ b/wekan_py/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for wekan_py project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "wekan_py.settings")
+
+application = get_wsgi_application()