remove channels (websocket) config;

This commit is contained in:
Marco Zeisler 2021-04-30 16:06:21 +02:00
parent 838845e65f
commit f57a0cb5ea

View File

@ -8,9 +8,6 @@ https://docs.djangoproject.com/en/2.0/ref/settings/
import datetime import datetime
import os 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, ...) # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
@ -36,7 +33,6 @@ INSTALLED_APPS = [
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'channels',
'rest_framework' 'rest_framework'
] ]