Only enable the bds app in development

This commit is contained in:
Martin Pépin 2019-10-06 18:54:32 +02:00
parent e2a7e1f6de
commit f9aee86a1c
No known key found for this signature in database
GPG key ID: E7520278B1774448
2 changed files with 3 additions and 4 deletions

View file

@ -103,7 +103,6 @@ INSTALLED_APPS = [
"kfet.auth",
"kfet.cms",
"gestioncof.cms",
"bds",
]

View file

@ -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"]
# ---