06/15 Phase 1 + 2 codes

This commit is contained in:
2026-06-15 11:23:05 -04:00
commit c2064b84b4
62 changed files with 2937 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
"""Main blueprint: landing page and health check."""
from flask import Blueprint, render_template, jsonify
main_bp = Blueprint("main", __name__)
@main_bp.route("/")
def index():
return render_template("index.html")
@main_bp.route("/healthz")
def healthz():
return jsonify(status="ok")