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.auth",
"kfet.cms", "kfet.cms",
"gestioncof.cms", "gestioncof.cms",
"bds",
] ]

View file

@ -15,9 +15,9 @@ DEBUG = True
if TESTING: if TESTING:
PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"] PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"]
# Only in development mode as long as the events app is not # As long as these apps are not ready for production, they are only available
# ready for production # in development mode
INSTALLED_APPS += ["events"] INSTALLED_APPS += ["events", "bds"]
# --- # ---