StudE-Backend/stude/config/asgi.py

23 lines
739 B
Python
Raw Normal View History

2023-06-26 18:58:20 +08:00
import os
from channels.routing import ProtocolTypeRouter, URLRouter
from channels.auth import AuthMiddlewareStack
2023-06-26 18:58:20 +08:00
from django.core.asgi import get_asgi_application
import api.routing
from django.urls import re_path
2023-06-26 18:58:20 +08:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
2023-07-01 11:40:49 +08:00
# Initialize Django ASGI application early to ensure the AppRegistry
# is populated before importing code that may import ORM models.
django_asgi_app = get_asgi_application()
application = ProtocolTypeRouter({
"http": django_asgi_app,
# Just HTTP for now. (We can add other protocols later.)
'websocket': AuthMiddlewareStack(
URLRouter(
[re_path(r'ws/', URLRouter(api.routing.websocket_urlpatterns))]
)
),
2023-07-01 11:40:49 +08:00
})