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/asgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 journal/asgi.py (limited to 'journal/asgi.py') diff --git a/journal/asgi.py b/journal/asgi.py new file mode 100644 index 0000000..52a0537 --- /dev/null +++ b/journal/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for journal project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'journal.settings') + +application = get_asgi_application() -- cgit v1.2.3