feat(trip-cluster): config, factory, CLI skeleton, health + thumb proxy

This commit is contained in:
2026-06-27 17:19:06 +02:00
parent 9ec6512428
commit e01b30a5b5
9 changed files with 196 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from flask import Blueprint
bp = Blueprint("nav", __name__)
@bp.route("/health")
def health():
return "ok"
@bp.route("/")
def index():
return "trip-cluster"
+14
View File
@@ -0,0 +1,14 @@
import os
from flask import Blueprint, current_app, send_file, abort
bp = Blueprint("proxy", __name__)
@bp.route("/thumb/<asset_id>")
def thumb(asset_id):
cfg = current_app.config["APP_CONFIG"]
safe = os.path.basename(asset_id)
path = os.path.join(cfg.thumbs_dir, f"{safe}.jpg")
if not os.path.exists(path):
abort(404)
return send_file(path, mimetype="image/jpeg")
+3
View File
@@ -0,0 +1,3 @@
from flask import Blueprint
bp = Blueprint("review", __name__)