diff --git a/.gitignore b/.gitignore index 7d372ff..db463d5 100644 --- a/.gitignore +++ b/.gitignore @@ -305,3 +305,4 @@ cython_debug/ /collected-static media/ +django-cache/ diff --git a/website/settings.py b/website/settings.py index 55ee0a1..4b0c793 100644 --- a/website/settings.py +++ b/website/settings.py @@ -86,7 +86,7 @@ WSGI_APPLICATION = "website.wsgi.application" DATABASES = {"default": env.db(default=f"sqlite:///{BASE_DIR}/db.sqlite3")} -CACHES = {"default": env.cache(default="dummycache://")} +CACHES = {"default": env.cache(default=f"filecache:///{BASE_DIR}/django-cache")} # Internationalization