From ed5815d8bd9cd93d87df3d3585a3149472c1f567 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Fri, 4 Oct 2024 11:43:44 -0400 Subject: [PATCH] fix: lib-cove-web settings need to be explicitly imported or restated --- core/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/settings.py b/core/settings.py index 432ce77..345c7f3 100644 --- a/core/settings.py +++ b/core/settings.py @@ -251,6 +251,10 @@ "support_email": "data@open-contracting.org", } +DELETE_FILES_AFTER_DAYS = int(os.getenv("DELETE_FILES_AFTER_DAYS", "90")) # default 7 +REQUESTS_TIMEOUT = int(os.getenv("REQUESTS_TIMEOUT", "10")) # default None +VALIDATION_ERROR_LOCATIONS_LENGTH = int(os.getenv("VALIDATION_ERROR_LOCATIONS_LENGTH", "100")) # default 1000 + # Project configuration