diff options
author | Filipp Lepalaan <f@230.to> | 2014-02-17 14:40:45 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2014-02-17 14:40:45 +0200 |
commit | b494dfc0933c28729eaf8bc2105bbeb28d24ceae (patch) | |
tree | cedbd44afcbe0db0b0392617b42565004fed9f76 /it/wsgi.py | |
download | pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.tar.gz pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.tar.bz2 pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.zip |
Initial commit
Diffstat (limited to 'it/wsgi.py')
-rw-r--r-- | it/wsgi.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/it/wsgi.py b/it/wsgi.py new file mode 100644 index 0000000..c780716 --- /dev/null +++ b/it/wsgi.py @@ -0,0 +1,14 @@ +""" +WSGI config for it 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/1.6/howto/deployment/wsgi/ +""" + +import os +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "it.settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application() |