From eb344b32c28e9ba9f06e3f2a1ca84b9336ac87c9 Mon Sep 17 00:00:00 2001 From: Haresh Kainth Date: Mon, 9 Dec 2024 15:03:44 +0000 Subject: [PATCH] Remove fbr.cache from local settings The fbr.cache entry has been removed from the BASE_APPS list in the local settings configuration. This change is likely done to adjust dependencies or clean up unnecessary entries that are not required for local development. --- fbr/config/settings/local.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fbr/config/settings/local.py b/fbr/config/settings/local.py index edb4d9e..e6d9ab5 100644 --- a/fbr/config/settings/local.py +++ b/fbr/config/settings/local.py @@ -6,7 +6,6 @@ BASE_APPS = [ "whitenoise.runserver_nostatic", # Serve static files via WhiteNoise "rest_framework", - "fbr.cache", ] INSTALLED_APPS = BASE_APPS + INSTALLED_APPS # noqa