Skip to content

Commit

Permalink
Implementation of the variable DOCUMENTATION_CLEAN_UP, for the docume…
Browse files Browse the repository at this point in the history
…ntation clean up command
  • Loading branch information
robotichead committed Dec 2, 2024
1 parent 57f33a2 commit 178081e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions oceansuite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,7 @@
MAX_FILE_SIZE_UPLOAD = 104857600
if "MAX_FILE_SIZE_UPLOAD" in os.environ:
MAX_FILE_SIZE_UPLOAD = os.getenv("MAX_FILE_SIZE_UPLOAD")

DOCUMENTATION_CLEAN_UP = False
if "DOCUMENTATION_CLEAN_UP" in os.environ:
DOCUMENTATION_CLEAN_UP = os.getenv("DOCUMENTATION_CLEAN_UP")

0 comments on commit 178081e

Please sign in to comment.