ft_transcendence/trancendence/asgi.py

28 lines
652 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-11-27 17:31:31 -05:00
import chat.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({
'http':get_asgi_application(),
'websocket':AuthMiddlewareStack(
URLRouter(
2023-11-27 17:31:31 -05:00
chat.routing.websocket_urlpatterns
2023-11-27 09:47:33 -05:00
)
)
})