aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-02-21 14:22:41 -0800
committerclarkzjw <[email protected]>2023-02-21 14:22:41 -0800
commit0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e (patch)
tree78c8d1c09f381050f9c3b7f1a911fbbbe28a81d0 /checkin/wsgi.py
parent431e8abcc4bf858e4ca945384a2f60702f1b5a4c (diff)
downloadswarm2fediverse-0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e.tar.gz
add django project template
Diffstat (limited to 'checkin/wsgi.py')
-rw-r--r--checkin/wsgi.py16
1 files changed, 16 insertions, 0 deletions
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 @@
1"""
2WSGI config for checkin 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/4.1/howto/deployment/wsgi/
8"""
9
10import os
11
12from django.core.wsgi import get_wsgi_application
13
14os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'checkin.settings')
15
16application = get_wsgi_application()
Powered by cgit v1.2.3 (git 2.41.0)