feat: Phase 5 write with autosave, journal/story modes, skip

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-21 16:54:15 +02:00
parent b5c90a1e81
commit 02c772f321
4 changed files with 339 additions and 1 deletions
+2 -1
View File
@@ -8,7 +8,7 @@ def create_app(state_dir=None, pages_dir=None):
app.config["IMMICH_URL"] = os.environ.get("IMMICH_URL", "")
app.config["IMMICH_API_KEY"] = os.environ.get("IMMICH_API_KEY", "")
from .routes import albums, triage, proxy, notes, nav, curate, group
from .routes import albums, triage, proxy, notes, nav, curate, group, write
app.register_blueprint(albums.bp)
app.register_blueprint(triage.bp)
app.register_blueprint(proxy.bp)
@@ -16,6 +16,7 @@ def create_app(state_dir=None, pages_dir=None):
app.register_blueprint(nav.bp)
app.register_blueprint(curate.bp)
app.register_blueprint(group.bp)
app.register_blueprint(write.bp)
@app.get("/health")
def health():