From ff5cc3b5c191f16cc1f3f6c2ade1f198a2ecbe74 Mon Sep 17 00:00:00 2001 From: Dhinesh Babu G Date: Mon, 10 Nov 2025 12:39:47 +0000 Subject: [PATCH 1/2] Added my contribution note --- README.md | 5 +++++ app.py | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/README.md b/README.md index 0349143d..485cd937 100644 --- a/README.md +++ b/README.md @@ -110,3 +110,8 @@ 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 Dhinesh Babu G + + + diff --git a/app.py b/app.py index 8c27ec75..6b31e1a6 100644 --- a/app.py +++ b/app.py @@ -3,9 +3,14 @@ # Licensed under the MIT License. See LICENSE in the project root for license information. #----------------------------------------------------------------------------------------- + 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) + From 38a95529905cd37c01b9bcc37ab5628eb99e7e8b Mon Sep 17 00:00:00 2001 From: Dhinesh-babu Date: Mon, 10 Nov 2025 13:16:31 +0000 Subject: [PATCH 2/2] Added manual docker setup --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 485cd937..35814bdc 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,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 Dhinesh Babu G +Tested and modified by Dhinesh G