aboutsummaryrefslogtreecommitdiffstats
path: root/config/settings/local.py
diff options
context:
space:
mode:
Diffstat (limited to 'config/settings/local.py')
-rw-r--r--config/settings/local.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/config/settings/local.py b/config/settings/local.py
index e95cbb9..9174857 100644
--- a/config/settings/local.py
+++ b/config/settings/local.py
@@ -14,7 +14,7 @@ SECRET_KEY = env(
default="4MZuqVXy7rToppiUhiTBxzlQH8OxPDDmu4rsTqFiyAyLF50WPBVzX5ZFBLpwJPyY",
)
# https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts
-ALLOWED_HOSTS = ["localhost", "0.0.0.0", "127.0.0.1"] # noqa: S104
+ALLOWED_HOSTS = ["*"] # noqa: S104
# CACHES
# ------------------------------------------------------------------------------
@@ -73,10 +73,6 @@ if env("USE_DOCKER") == "yes":
# ------------------------------------------------------------------------------
# https://django-extensions.readthedocs.io/en/latest/installation_instructions.html#configuration
# INSTALLED_APPS += ["django_extensions"]
-# Celery
-# ------------------------------------------------------------------------------
-# https://docs.celeryq.dev/en/stable/userguide/configuration.html#task-eager-propagates
-CELERY_TASK_EAGER_PROPAGATES = True
# Your stuff...
# ------------------------------------------------------------------------------