v1.0.0 — минимальный Flask (site/app.py), проверка managed-сервиса

This commit is contained in:
“Naeel”
2026-08-06 09:39:41 +04:00
parent 40c49743c9
commit 7c2b0302f7
4 changed files with 106 additions and 0 deletions
Binary file not shown.
+14
View File
@@ -0,0 +1,14 @@
VERSION = "1.0.0"
from flask import Flask
app = Flask(__name__)
@app.route("/")
def index():
return f"<h1>tf_registry v{VERSION}</h1>"
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)