ft_transcendence/transcendence/asgi.py

33 lines
802 B
Python
Raw Normal View History

2023-10-24 07:32:18 -04:00
"""
ASGI config for trancendence 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/4.2/howto/deployment/asgi/
"""
import os
2023-11-27 09:47:33 -05:00
from channels.routing import ProtocolTypeRouter, URLRouter
from channels.auth import AuthMiddlewareStack
2023-12-12 06:06:13 -05:00
2023-11-27 17:31:31 -05:00
import chat.routing
2023-12-12 06:06:13 -05:00
import matchmaking.routing
import tournament.routing
2023-10-24 07:32:18 -04:00
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'trancendence.settings')
2023-11-27 09:47:33 -05:00
application = ProtocolTypeRouter({
2023-12-11 04:53:34 -05:00
'http':get_asgi_application(),
2023-11-27 09:47:33 -05:00
'websocket':AuthMiddlewareStack(
URLRouter(
2023-12-12 06:06:13 -05:00
chat.routing.websocket_urlpatterns +
matchmaking.routing.websocket_urlpatterns +
tournament.routing.websocket_urlpatterns
2023-11-27 09:47:33 -05:00
)
)
})