Align Flask app with Nubes template

This commit is contained in:
“Naeel”
2026-08-28 09:32:22 +03:00
parent 2236b8af7d
commit ec57cf5d57
3 changed files with 5 additions and 22 deletions
+2 -1
View File
@@ -1,2 +1,3 @@
Flask>=3.0
gunicorn>=21.2
gunicorn>=21.2
requests>=2.31
+3 -15
View File
@@ -1,29 +1,17 @@
import platform
from datetime import datetime, timezone
from flask import Flask, jsonify, render_template
import flask
VERSION = "0.0.1"
app = Flask(__name__, template_folder="templates", static_folder="static")
@app.route("/")
def index():
return render_template(
"index.html",
version=VERSION,
current_time=datetime.now(timezone.utc).isoformat(),
python_version=platform.python_version(),
flask_version=flask.__version__,
)
return render_template("index.html")
@app.route("/health")
def health():
return jsonify(status="ok", version=VERSION)
return jsonify(status="ok")
if __name__ == "__main__":
app.run(debug=True, host="0.0.0.0", port=5000)
app.run(host="0.0.0.0", port=5000)
-6
View File
@@ -10,12 +10,6 @@
<main>
<h1>Recipe handwriting recognition</h1>
<p>Managed Flask server is running.</p>
<dl>
<dt>Version</dt><dd>{{ version }}</dd>
<dt>UTC time</dt><dd>{{ current_time }}</dd>
<dt>Python</dt><dd>{{ python_version }}</dd>
<dt>Flask</dt><dd>{{ flask_version }}</dd>
</dl>
</main>
</body>
</html>