settings/dev: do not require memcached

This commit is contained in:
Chris Tactic 2023-09-28 12:57:51 +02:00
parent 5ea092dba6
commit 110fac70a6

View File

@ -40,3 +40,9 @@ LOGGING = {
},
},
}
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
}
}