From 153b2c0c5957384189c7c373c8fab6ef933b9e46 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 16 Jul 2022 01:18:45 +0100 Subject: [PATCH] Revert "Add an actual cache for local development" This reverts commit 8a4d91fecba09f5fee104f597df1a0d90623d39e. This actually makes things very annoying --- .gitignore | 1 - website/settings.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a7ea664..b0f9fac 100644 --- a/.gitignore +++ b/.gitignore @@ -305,7 +305,6 @@ cython_debug/ /collected-static media/ -django-cache/ # Redis dump.rdb diff --git a/website/settings.py b/website/settings.py index d79ca4d..094d9ae 100644 --- a/website/settings.py +++ b/website/settings.py @@ -95,7 +95,7 @@ WSGI_APPLICATION = "website.wsgi.application" DATABASES = {"default": env.db(default=f"sqlite:///{BASE_DIR}/db.sqlite3")} -CACHES = {"default": env.cache(default=f"filecache:///{BASE_DIR}/django-cache")} +CACHES = {"default": env.cache(default="dummycache://")} RQ_QUEUES = {}