From d1395c5017e837503ba66be99eb24502548fb58e Mon Sep 17 00:00:00 2001 From: Lorenzo Venerandi Date: Mon, 23 Feb 2026 20:42:25 +0100 Subject: [PATCH 1/2] fix: reset dashboard secret_path to null for default configuration --- config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.yaml b/config.yaml index a13cc8b..9d736e5 100644 --- a/config.yaml +++ b/config.yaml @@ -23,7 +23,7 @@ dashboard: # if set to "null" this will Auto-generates random path if not set # can be set to "/dashboard" or similar <-- note this MUST include a forward slash # secret_path: super-secret-dashboard-path - secret_path: test + secret_path: null backups: path: "backups" From a0b8a65ba61cb15c4bdea407f578d5d1cc7e6d1f Mon Sep 17 00:00:00 2001 From: Lorenzo Venerandi Date: Mon, 23 Feb 2026 20:42:55 +0100 Subject: [PATCH 2/2] fix: set default values for exports_path and backups_path in configuration --- src/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.py b/src/config.py index 502cf76..3bdf7e5 100644 --- a/src/config.py +++ b/src/config.py @@ -194,8 +194,8 @@ class Config: canary_token_tries=canary.get("token_tries", 10), dashboard_secret_path=dashboard_path, probability_error_codes=behavior.get("probability_error_codes", 0), - exports_path=exports.get("path"), - backups_path=backups.get("path"), + exports_path=exports.get("path", "exports"), + backups_path=backups.get("path", "backups"), backups_enabled=backups.get("enabled", False), backups_cron=backups.get("cron"), database_path=database.get("path", "data/krawl.db"),