From 4ac572f31c879ffae4f2dc07dd6fdfe44a1c139e Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Fri, 5 Sep 2025 23:11:29 +0200 Subject: [PATCH] Comment that we don't use whitenoise.CompressedManifestStaticFilesStorage had me surprised for a little bit while debugging another issue (of which I thought it might have been caused by whitenoise). Better to have something to grep for --- bugsink/settings/default.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bugsink/settings/default.py b/bugsink/settings/default.py index 0e907a5..27be223 100644 --- a/bugsink/settings/default.py +++ b/bugsink/settings/default.py @@ -272,6 +272,8 @@ STATICFILES_DIRS = [ # > the collectstatic command during the build, so long as you do not wish to use any of the caching and compression # > features provided by the storage backends. # +# ("so long as" implies: we don't use "whitenoise.storage.CompressedManifestStaticFilesStorage" or similar) +# # Reasons to enable this in production: # # * Simplicity-as-a-core-value: yet another step we can remove from the install/upgrade process