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