From 78df73f0fec324dda56718c1a5434fe4c29b4f7b Mon Sep 17 00:00:00 2001 From: tharik s Date: Mon, 10 Nov 2025 11:52:03 +0000 Subject: [PATCH] Added my contribution note --- README.md | 4 ++++ app.py | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/README.md b/README.md index 0349143d..b1967cea 100644 --- a/README.md +++ b/README.md @@ -110,3 +110,7 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio Copyright © Microsoft Corporation All rights reserved.
Licensed under the MIT License. See LICENSE in the project root for license information. + + +##My contribution + tested and modified by tharik s diff --git a/app.py b/app.py index 8c27ec75..a0615129 100644 --- a/app.py +++ b/app.py @@ -9,3 +9,12 @@ @app.route("/") def hello(): return app.send_static_file("index.html") +from flask import Flask +app = Flask(__name__) + +@app.route("/") +def hello(): + return app.send_static_file("index.html") + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000)