Asgi
In [ ]:
Copied!
"""
ASGI config for censo 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.1/howto/deployment/asgi/
"""
"""
ASGI config for censo 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.1/howto/deployment/asgi/
"""
In [ ]:
Copied!
import os
import os
In [ ]:
Copied!
from django.core.asgi import get_asgi_application
from django.core.asgi import get_asgi_application
In [ ]:
Copied!
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'censo.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'censo.settings')
In [ ]:
Copied!
application = get_asgi_application()
application = get_asgi_application()