From f2b43fce0bfab0d63fa36a2d5772ff184f106285 Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 9 Apr 2026 19:32:28 +0200 Subject: [PATCH] fix: store openissues.json in bind-mounted static/ dir Was stored at /app/openissues.json (ephemeral container filesystem). Moved to /app/static/openissues.json which is bind-mounted to the host at ./static/, persisting across container rebuilds. Co-Authored-By: Claude Opus 4.6 (1M context) --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 3327c5d1..df85b4fd 100644 --- a/main.py +++ b/main.py @@ -1335,7 +1335,7 @@ async def get_version(): # ─── Issues board endpoints ────────────────────────────────────── -ISSUES_FILE = Path("openissues.json") +ISSUES_FILE = Path("static/openissues.json") def _load_issues():