aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'checkin/asgi.py')
-rw-r--r--checkin/asgi.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/checkin/asgi.py b/checkin/asgi.py
new file mode 100644
index 0000000..ce05df3
--- /dev/null
+++ b/checkin/asgi.py
@@ -0,0 +1,16 @@
1"""
2ASGI config for checkin project.
3
4It exposes the ASGI callable as a module-level variable named ``application``.
5
6For more information on this file, see
7https://docs.djangoproject.com/en/4.1/howto/deployment/asgi/
8"""
9
10import os
11
12from django.core.asgi import get_asgi_application
13
14os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'checkin.settings')
15
16application = get_asgi_application()
Powered by cgit v1.2.3 (git 2.41.0)