fullsterkur/fullsterkur/asgi.hy

16 lines
404 B
Hy

"
ASGI config for fullsterkur 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.2/howto/deployment/asgi/
"
(import os)
(import django.core.asgi [get_asgi_application])
((. os.environ setdefault) "DJANGO_SETTINGS_MODULE" "fullsterkur.settings")
(setv application (get_asgi_application))