add convex health metrics route
Build and Push Docker Container / build-and-push (push) Successful in 2m4s

This commit is contained in:
2026-04-01 21:32:28 +02:00
parent d9b7c88ccf
commit 4773338ccc
4 changed files with 35 additions and 1 deletions
+4 -1
View File
@@ -10,7 +10,8 @@ import routes.handeling.errorsAndBots
from routes import (
basic_bp, auth_login_bp,
side_main_bp,
upload_bp
upload_bp,
health_bp
)
# Views for Requests adding the uris
@@ -20,5 +21,7 @@ app.register_blueprint(auth_login_bp)
app.register_blueprint(side_main_bp)
app.register_blueprint(upload_bp)
app.register_blueprint(health_bp, url_prefix='/health')
if __name__ == '__main__':
app.run(debug=WEB_DEBUG, port=5502)