update caching on homepage, and add db checks to healthcheck

This commit is contained in:
badblocks 2025-04-29 12:17:23 -07:00
parent 411c274e56
commit 7d94dc001f
4 changed files with 75 additions and 18 deletions

View file

@ -0,0 +1,6 @@
from django.conf import settings
def cache_settings(request):
return {
'CACHE_TIMEOUT': settings.CACHE_TIMEOUT,
}