From b494dfc0933c28729eaf8bc2105bbeb28d24ceae Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Mon, 17 Feb 2014 14:40:45 +0200 Subject: Initial commit --- it/wsgi.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 it/wsgi.py (limited to 'it/wsgi.py') 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() -- cgit v1.2.3