From 0c94fea03610e8357db3b1f74539962ebe31bbcf Mon Sep 17 00:00:00 2001 From: jushwanth s Date: Mon, 10 Nov 2025 11:52:16 +0000 Subject: [PATCH] Added my contribution note --- README.md | 4 ++++ app.py | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/README.md b/README.md index 0349143d..ffa71588 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 jushwanth s + diff --git a/app.py b/app.py index 8c27ec75..ebab7e5c 100644 --- a/app.py +++ b/app.py @@ -1,3 +1,16 @@ +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)#----------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See LICENSE in the project root for license information. +#----------------------------------------------------------------------------------------- + #----------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See LICENSE in the project root for license information. @@ -9,3 +22,6 @@ @app.route("/") def hello(): return app.send_static_file("index.html") + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000)