20 lines
460 B
Python
20 lines
460 B
Python
import os
|
|
|
|
from django.core.asgi import get_asgi_application
|
|
from channels.routing import ProtocolTypeRouter, URLRouter
|
|
from channels.auth import AuthMiddlewareStack
|
|
|
|
import apps.epic.routing
|
|
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
|
|
|
|
application = ProtocolTypeRouter({
|
|
'http': get_asgi_application(),
|
|
'websocket': AuthMiddlewareStack(
|
|
URLRouter(
|
|
apps.epic.routing.websocket_urlpatterns
|
|
)
|
|
),
|
|
})
|