From f57a0cb5ea2fa55bd0cac11505db9786de4bf1f5 Mon Sep 17 00:00:00 2001 From: Marco Zeisler Date: Fri, 30 Apr 2021 16:06:21 +0200 Subject: [PATCH] remove channels (websocket) config; --- backend/app_be/settings.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/backend/app_be/settings.py b/backend/app_be/settings.py index 1c23499..715c882 100644 --- a/backend/app_be/settings.py +++ b/backend/app_be/settings.py @@ -8,9 +8,6 @@ https://docs.djangoproject.com/en/2.0/ref/settings/ import datetime import os -# set the websocket routing module location here -ASGI_APPLICATION = 'app_be.routing.application' - # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) @@ -36,7 +33,6 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', - 'channels', 'rest_framework' ]