cineclub-site/server/ulm_cine_club_api/asgi.py

17 lines
411 B
Python
Raw Normal View History

2022-04-03 01:20:53 +02:00
"""
ASGI config for ulm_cine_club_api 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/3.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
2022-04-03 01:20:54 +02:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ulm_cine_club_api.settings")
2022-04-03 01:20:53 +02:00
application = get_asgi_application()