initial commit

This commit is contained in:
2024-12-17 13:07:06 -08:00
commit 3a3382ffff
183 changed files with 186691 additions and 0 deletions

28
backend/mesa/asgi.py Normal file
View File

@@ -0,0 +1,28 @@
"""
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)
)
)
})