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:
parent
80cfbfdfca
commit
f2b43fce0b
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
|
@ -1335,7 +1335,7 @@ async def get_version():
|
||||||
|
|
||||||
|
|
||||||
# ─── Issues board endpoints ──────────────────────────────────────
|
# ─── Issues board endpoints ──────────────────────────────────────
|
||||||
ISSUES_FILE = Path("openissues.json")
|
ISSUES_FILE = Path("static/openissues.json")
|
||||||
|
|
||||||
|
|
||||||
def _load_issues():
|
def _load_issues():
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue