diff --git a/README.md b/README.md index 0349143d..0b068f3b 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 handsome Sai Gowtham G + + diff --git a/app.py b/app.py index 8c27ec75..5ffa2b6c 100644 --- a/app.py +++ b/app.py @@ -9,3 +9,6 @@ @app.route("/") def hello(): return app.send_static_file("index.html") +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000) +