En mode debug, pas de cache

This commit is contained in:
Jean-Marie Favreau 2024-08-31 10:49:23 +02:00
parent 29e4d74f94
commit a515d26475

View File

@ -198,14 +198,21 @@ COMPRESS_PRECOMPILERS = (("text/x-scss", "django_libsass.SassCompiler"),)
# cache # cache
CACHES = { if DEBUG:
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}
else:
CACHES = {
"default": { "default": {
"BACKEND": "django.core.cache.backends.redis.RedisCache", "BACKEND": "django.core.cache.backends.redis.RedisCache",
"LOCATION": REDIS_URL, "LOCATION": REDIS_URL,
"KEY_PREFIX": "agenda", "KEY_PREFIX": "agenda",
"TIMEOUT": 60 * 15, "TIMEOUT": 60 * 15,
} }
} }
# EMAIL settings # EMAIL settings