diff options
author | clarkzjw <[email protected]> | 2023-02-21 14:22:41 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-21 14:22:41 -0800 |
commit | 0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e (patch) | |
tree | 78c8d1c09f381050f9c3b7f1a911fbbbe28a81d0 /checkin/asgi.py | |
parent | 431e8abcc4bf858e4ca945384a2f60702f1b5a4c (diff) | |
download | swarm2fediverse-0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e.tar.gz |
add django project template
Diffstat (limited to 'checkin/asgi.py')
-rw-r--r-- | checkin/asgi.py | 16 |
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 | """ | ||
2 | ASGI config for checkin project. | ||
3 | |||
4 | It exposes the ASGI callable as a module-level variable named ``application``. | ||
5 | |||
6 | For more information on this file, see | ||
7 | https://docs.djangoproject.com/en/4.1/howto/deployment/asgi/ | ||
8 | """ | ||
9 | |||
10 | import os | ||
11 | |||
12 | from django.core.asgi import get_asgi_application | ||
13 | |||
14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'checkin.settings') | ||
15 | |||
16 | application = get_asgi_application() | ||