mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
24 lines
805 B
Python
24 lines
805 B
Python
import os
|
|
|
|
from channels.routing import ProtocolTypeRouter, URLRouter
|
|
from channels.security.websocket import AllowedHostsOriginValidator
|
|
from channels.auth import AuthMiddlewareStack
|
|
from django.core.asgi import get_asgi_application
|
|
import api.routing
|
|
from django.urls import re_path
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
|
# 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,
|
|
'websocket': AllowedHostsOriginValidator(
|
|
AuthMiddlewareStack(
|
|
URLRouter(
|
|
[re_path(r'ws/', URLRouter(api.routing.websocket_urlpatterns))]
|
|
)
|
|
),
|
|
)
|
|
})
|