Files
TestMesa/backend/mesa/asgi.py
2024-12-17 13:07:06 -08:00

29 lines
774 B
Python

"""
ASGI config for mesa 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.0/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
from channels.routing import ProtocolTypeRouter, URLRouter
from channels.auth import AuthMiddlewareStack
from channels.security.websocket import AllowedHostsOriginValidator
import websocket.routing
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mesa.settings')
application = ProtocolTypeRouter({
'http':get_asgi_application(),
"websocket": AllowedHostsOriginValidator(
AuthMiddlewareStack(
URLRouter(websocket.routing.websocket_urlpatterns)
)
)
})