aboutsummaryrefslogtreecommitdiffstats
path: root/config/settings/local.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-12-08 21:18:23 +0000
committerMatthew Lemon <y@yulqen.org>2024-12-08 21:18:23 +0000
commitd3dda8c0bd194c28cf11c189c150c00bdc3e8a83 (patch)
tree28a656ea58e1420cc0da024eeadcc6ff1b30f234 /config/settings/local.py
parent411e79ada3d5bf315000ff5bb598235118d50b51 (diff)
wip: working on ratelimit - not quite working in the browser
Diffstat (limited to 'config/settings/local.py')
-rw-r--r--config/settings/local.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/config/settings/local.py b/config/settings/local.py
index b9eb50b..e95cbb9 100644
--- a/config/settings/local.py
+++ b/config/settings/local.py
@@ -19,12 +19,12 @@ ALLOWED_HOSTS = ["localhost", "0.0.0.0", "127.0.0.1"] # noqa: S104
# CACHES
# ------------------------------------------------------------------------------
# https://docs.djangoproject.com/en/dev/ref/settings/#caches
-CACHES = {
- "default": {
- "BACKEND": "django.core.cache.backends.locmem.LocMemCache",
- "LOCATION": "",
- },
-}
+# CACHES = {
+# "default": {
+# "BACKEND": "django.core.cache.backends.locmem.LocMemCache",
+# "LOCATION": "",
+# },
+# }
# EMAIL
# ------------------------------------------------------------------------------