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) <noreply@anthropic.com>
This commit is contained in:
Erik 2026-04-09 19:32:28 +02:00
parent 80cfbfdfca
commit f2b43fce0b

View file

@ -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():