Update app.py
All checks were successful
Flask CI/CD Pipeline / format-and-auto-fix (push) Successful in 17s
Flask CI/CD Pipeline / test-and-verify (push) Successful in 33s
Flask CI/CD Pipeline / build-scan-and-push-image (push) Successful in 35s
Flask CI/CD Pipeline / deploy-to-k3s (push) Successful in 14s

This commit is contained in:
2026-04-17 08:43:59 +00:00
parent a4d20c3db2
commit 44614e3ef5

4
app.py
View File

@@ -74,6 +74,10 @@ def home():
return render_template_string(HTML, tekst=tekst, gespiegeld=gespiegeld)
@app.get("/health")
def health():
return {"status": "ok"}, 200
if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)