only load channels app if DEBUG is enabled; its only purpose is to monkey-patch the runserver command.

This commit is contained in:
jonaswinkler 2021-02-14 12:50:30 +01:00
parent 43c729568b
commit 3d0a52c25f

View File

@ -102,10 +102,11 @@ INSTALLED_APPS = [
"django_q",
"channels",
] + env_apps
if DEBUG:
INSTALLED_APPS.append("channels")
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [
'rest_framework.authentication.BasicAuthentication',