From 4897b7db3eb0f0df50d9bf6e40486d7e9a24ffae Mon Sep 17 00:00:00 2001 From: imran-s-creator Date: Mon, 10 Nov 2025 16:47:05 +0000 Subject: [PATCH] Added my contribution note --- README.md | 3 +-- app.py | 4 +++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0349143d..6626f21a 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ [![Open in Dev Containers](https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/vscode-remote-try-python) -A **development container** is a running container with a well-defined tool/runtime stack and its prerequisites. You can try out development containers with **[GitHub Codespaces](https://github.com/features/codespaces)** or **[Visual Studio Code Dev Containers](https://aka.ms/vscode-remote/containers)**. - +A **development container** is a running container with a well-defined tool/runtime stack and its prerequisites. You can try out development containers with **[GitHub Codespaces](https://github.com/features/codespaces)** or **life is not easy This is a sample project that lets you try out either option in a few easy steps. We have a variety of other [vscode-remote-try-*](https://github.com/search?q=org%3Amicrosoft+vscode-remote-try-&type=Repositories) sample projects, too. > **Note:** If you already have a codespace or dev container, you can jump to the [Things to try](#things-to-try) section. diff --git a/app.py b/app.py index 8c27ec75..95df8d2b 100644 --- a/app.py +++ b/app.py @@ -1,4 +1,4 @@ -#----------------------------------------------------------------------------------------- +2#----------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See LICENSE in the project root for license information. #----------------------------------------------------------------------------------------- @@ -9,3 +9,5 @@ @app.route("/") def hello(): return app.send_static_file("index.html") +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000)