From 8eb07d94a12f0fb8d4a8f15043aedc8cadd7c676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 22 Jul 2020 01:16:01 +0200 Subject: Initial commit --- vms/test_django/test_django/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 vms/test_django/test_django/wsgi.py (limited to 'vms/test_django/test_django/wsgi.py') diff --git a/vms/test_django/test_django/wsgi.py b/vms/test_django/test_django/wsgi.py new file mode 100644 index 0000000..984650c --- /dev/null +++ b/vms/test_django/test_django/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for test_django 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.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_django.settings') + +application = get_wsgi_application() -- cgit v1.2.3