Revert "Add an actual cache for local development"

This reverts commit 8a4d91fecb.

This actually makes things very annoying
This commit is contained in:
Jake Howard 2022-07-16 01:18:45 +01:00
parent 1326214c8f
commit 153b2c0c59
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@ -305,7 +305,6 @@ cython_debug/
/collected-static
media/
django-cache/
# Redis
dump.rdb

View File

@ -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 = {}