summaryrefslogtreecommitdiff
path: root/vms/test_django/test_django/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'vms/test_django/test_django/wsgi.py')
-rw-r--r--vms/test_django/test_django/wsgi.py16
1 files changed, 16 insertions, 0 deletions
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 @@
1"""
2WSGI config for test_django project.
3
4It exposes the WSGI callable as a module-level variable named ``application``.
5
6For more information on this file, see
7https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/
8"""
9
10import os
11
12from django.core.wsgi import get_wsgi_application
13
14os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_django.settings')
15
16application = get_wsgi_application()