mirror of
https://github.com/umap-project/umap.git
synced 2025-05-06 06:21:49 +02:00
28 lines
933 B
Python
28 lines
933 B
Python
import os
|
|
|
|
from channels.auth import AuthMiddlewareStack
|
|
from channels.routing import ProtocolTypeRouter, URLRouter
|
|
from channels.security.websocket import AllowedHostsOriginValidator
|
|
from django.core.asgi import get_asgi_application
|
|
from django.urls import re_path
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "umap.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,
|
|
# Just HTTP for now. (We can add other protocols later.)
|
|
"websocket": AllowedHostsOriginValidator(
|
|
AuthMiddlewareStack(
|
|
URLRouter(
|
|
[
|
|
re_path(r"^ws/$", consumers.AsyncChatConsumer.as_asgi()),
|
|
]
|
|
)
|
|
)
|
|
),
|
|
}
|
|
)
|