summaryrefslogtreecommitdiff
path: root/vms/test_django/test_django/wsgi.py
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-07-22 01:16:01 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-07-22 01:16:01 +0200
commit8eb07d94a12f0fb8d4a8f15043aedc8cadd7c676 (patch)
tree647e9737344bef2206b082222d7ff87307fd91c2 /vms/test_django/test_django/wsgi.py
downloadNixies-8eb07d94a12f0fb8d4a8f15043aedc8cadd7c676.tar.gz
Nixies-8eb07d94a12f0fb8d4a8f15043aedc8cadd7c676.tar.zst
Nixies-8eb07d94a12f0fb8d4a8f15043aedc8cadd7c676.zip
Initial commit
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()