settings/dev: do not require memcached

This commit is contained in:
Chris Tactic 2023-09-28 12:57:51 +02:00
parent 5119ef5f44
commit f426e21541

View File

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