Skip to content

Commit

Permalink
fix: lib-cove-web settings need to be explicitly imported or restated
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 4, 2024
1 parent d176291 commit ed5815d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,10 @@
"support_email": "[email protected]",
}

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

Expand Down

0 comments on commit ed5815d

Please sign in to comment.