From ad232020d57d2c77dfd5400dc4a8290b484c8ba2 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 14 Jul 2024 15:30:27 -0500 Subject: Initial commit --- journal/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 journal/wsgi.py (limited to 'journal/wsgi.py') diff --git a/journal/wsgi.py b/journal/wsgi.py new file mode 100644 index 0000000..b172983 --- /dev/null +++ b/journal/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for journal 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/5.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'journal.settings') + +application = get_wsgi_application() -- cgit v1.2.3