From 6c9cc2ab4f4dbb816ffa6186ebb3e8a0e21aeb34 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Thu, 16 May 2024 10:10:42 +0200 Subject: [PATCH] Remove asgi.py we don't do ASGI, let's not have this hanging around as a point of confusion --- bugsink/asgi.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 bugsink/asgi.py diff --git a/bugsink/asgi.py b/bugsink/asgi.py deleted file mode 100644 index 1743e86..0000000 --- a/bugsink/asgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -ASGI config for bugsink 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/4.2/howto/deployment/asgi/ -""" - -import os - -from django.core.asgi import get_asgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'bugsink.settings') - -application = get_asgi_application()