fix: структура как contracts-app — site/app.py + Dockerfile

This commit is contained in:
2026-06-27 13:54:33 +04:00
parent bd9747fce1
commit c59ec1a03a
2 changed files with 2 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def index():
return "contracts-flask OK"
@app.route("/health")
def health():
return {"ok": True, "service": "contracts-flask"}
if __name__ == "__main__":
app.run(debug=False, host="0.0.0.0", port=5000)