From f4d353b73253e8d2c3be3cb7c64c0ced4ee2eed9 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 22 Jul 2016 13:50:54 +0300 Subject: Start Django project --- yubitest/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 yubitest/wsgi.py (limited to 'yubitest/wsgi.py') diff --git a/yubitest/wsgi.py b/yubitest/wsgi.py new file mode 100644 index 0000000..41bf608 --- /dev/null +++ b/yubitest/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for yubitest 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.9/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "yubitest.settings") + +application = get_wsgi_application() -- cgit v1.3.1