1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-08-13 12:09:37 +02:00
Files
api
chat
docs
draw
locale
logs
participation
registration
tfjm
helloasso
static
templates
__init__.py
asgi.py
lists.py
middlewares.py
permissions.py
routing.py
settings.py
settings_dev.py
settings_prod.py
tests.py
tokens.py
urls.py
views.py
wsgi.py
.bashrc
.dockerignore
.gitignore
.gitlab-ci.yml
Dockerfile
LICENSE
README.md
entrypoint.sh
manage.py
nginx_tfjm.conf
requirements.txt
tfjm.cron
tox.ini
plateforme-tfjm2/tfjm/asgi.py
Emmy D'Anello 06c82a239d Initialize chat interface
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2024-04-27 08:57:01 +02:00

35 lines
978 B
Python

# Copyright (C) 2020 by Animath
# SPDX-License-Identifier: GPL-3.0-or-later
"""
ASGI config for tfjm 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.0/howto/deployment/asgi/
"""
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
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tfjm.settings')
django_asgi_app = get_asgi_application()
# useful since the import must be done after the application initialization
import tfjm.routing # noqa: E402, I202
application = ProtocolTypeRouter(
{
"http": django_asgi_app,
"websocket": AllowedHostsOriginValidator(
AuthMiddlewareStack(URLRouter(tfjm.routing.websocket_urlpatterns))
),
}
)