Files
seth f659b3e58d
deploy / deploy (push) Successful in 4m46s
cleanup-expired / cleanup-expired (push) Successful in 1s
Add hyperspace starfield to landing page
Replaces the static Backstage template page with a canvas-based warp
starfield and a glowing "SETH'S TEST" HUD overlay. Self-contained, no
external assets; star count is fixed and resize-safe.
2026-05-13 14:04:01 -05:00

22 lines
390 B
Python

from flask import Flask, jsonify, render_template
app = Flask(__name__)
@app.route("/health")
def health():
return jsonify(status="ok", service="sethtest"), 200
@app.route("/")
def index():
return render_template(
"index.html",
name="sethtest",
description="Warp drive engaged",
)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8080)