This commit is contained in:
2026-02-10 10:29:20 +01:00
parent 9838164b88
commit f9082f1e5b
7 changed files with 156 additions and 7 deletions

View File

@@ -29,5 +29,5 @@ BACKUP_PATH = os.getenv("BACKUP_PATH")
# Behaviour
# =========================
DRY_RUN = os.getenv("DRY_RUN", "1") == "1"
DRY_RUN = os.getenv("DRY_RUN", "true").lower() in ("1", "true", "yes")
BATCH_SIZE = int(os.getenv("BATCH_SIZE", 1000))