diff --git a/app.py b/app.py
index b3118b0..46e1fcd 100644
--- a/app.py
+++ b/app.py
@@ -18,6 +18,18 @@ js.build()
+
+@app.route('/liveness')
+def healthx():
+ return "
Liveness check completed"
+
+@app.route('/readiness')
+def healthz():
+ return "Readiness check completed"
+
+
+
+
@app.route("/")
def homepage():
return render_template("main-page.html")