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()
|