mirror of
https://github.com/tjsga/scoreboard.git
synced 2025-04-04 20:20:18 -04:00
20 lines
534 B
Python
20 lines
534 B
Python
"""
|
|
ASGI config for config 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/3.1/howto/deployment/asgi/
|
|
"""
|
|
|
|
import os
|
|
|
|
from channels.routing import ProtocolTypeRouter
|
|
from django.core.asgi import get_asgi_application
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
|
|
|
|
application = ProtocolTypeRouter({
|
|
"http": get_asgi_application(),
|
|
# Just HTTP for now. (We can add other protocols later.)
|
|
}) |