From 5d7f0148a08304e985fbd127211b6874e65900b8 Mon Sep 17 00:00:00 2001 From: mohanes139-cell Date: Sun, 9 Nov 2025 03:18:12 +0000 Subject: [PATCH 1/2] Update Readme.md and requirements.txt --- README.md | 14 ++++++++++++++ requirements.txt | 12 +++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0349143d..d9000dbc 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,20 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. +#----------------------------------------------------------------------------------------- +# 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 ## License Copyright © Microsoft Corporation All rights reserved.
diff --git a/requirements.txt b/requirements.txt index 8ab6294c..e63a0eb3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,11 @@ -flask \ No newline at end of file +blinker==1.9.0 +click==8.3.0 +Flask==3.1.2 +gitdb==4.0.12 +GitPython==3.1.41 +itsdangerous==2.2.0 +Jinja2==3.1.6 +MarkupSafe==3.0.3 +setuptools==75.6.0 +smmap==5.0.2 +Werkzeug==3.1.3 From 44fec5abe08ec4f27a93a90d0af8547d2b8ab58a Mon Sep 17 00:00:00 2001 From: mohanes139-cell Date: Sun, 9 Nov 2025 03:24:25 +0000 Subject: [PATCH 2/2] Update Readme.md --- README.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index d9000dbc..6fc52e28 100644 --- a/README.md +++ b/README.md @@ -106,21 +106,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. -#----------------------------------------------------------------------------------------- -# 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 -## License +##licence +This docker management and code fix Copyright © Microsoft Corporation All rights reserved.
Licensed under the MIT License. See LICENSE in the project root for license information.