diff --git a/cof/settings/common.py b/cof/settings/common.py index dc59d0f1..1b6f3bd1 100644 --- a/cof/settings/common.py +++ b/cof/settings/common.py @@ -103,7 +103,6 @@ INSTALLED_APPS = [ "kfet.auth", "kfet.cms", "gestioncof.cms", - "bds", ] diff --git a/cof/settings/dev.py b/cof/settings/dev.py index 0920e538..db7a52cb 100644 --- a/cof/settings/dev.py +++ b/cof/settings/dev.py @@ -15,9 +15,9 @@ DEBUG = True if TESTING: PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"] -# Only in development mode as long as the events app is not -# ready for production -INSTALLED_APPS += ["events"] +# As long as these apps are not ready for production, they are only available +# in development mode +INSTALLED_APPS += ["events", "bds"] # ---