From 0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Tue, 21 Feb 2023 14:22:41 -0800 Subject: add django project template --- checkin/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 checkin/wsgi.py (limited to 'checkin/wsgi.py') diff --git a/checkin/wsgi.py b/checkin/wsgi.py new file mode 100644 index 0000000..b1bd80f --- /dev/null +++ b/checkin/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for checkin 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/4.1/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'checkin.settings') + +application = get_wsgi_application() -- cgit v1.2.3