From e3f8dba362ac9210c4b838007c160ce30fa2bf49 Mon Sep 17 00:00:00 2001 From: Kishore138-cyber Date: Tue, 11 Nov 2025 08:14:25 +0000 Subject: [PATCH] Added my contribution note --- README.md | 4 ++++ app.py | 15 +++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/README.md b/README.md index 0349143d..be518e8f 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 kishore r + diff --git a/app.py b/app.py index 8c27ec75..7c1209a7 100644 --- a/app.py +++ b/app.py @@ -6,6 +6,21 @@ from flask import Flask app = Flask(__name__) +@app.route("/") +def hello(): + return app.send_static_file("index.html")#----------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# 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) + +