feat: add FileBasedCache

This commit is contained in:
Herculino Trotta
2024-10-13 15:55:55 -03:00
parent 7f24d49049
commit 5b0ed9bce8

View File

@@ -185,6 +185,13 @@ STATICFILES_FINDERS = [
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
]
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.filebased.FileBasedCache",
"LOCATION": "/var/tmp/django_cache",
}
}
WEBPACK_LOADER = {
"MANIFEST_FILE": ROOT_DIR / "frontend/build/manifest.json",
}