Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,13 @@ 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.

Find the file named README.md in that folder.


Right-click on it → select “Open With Text Editor” or “Open With VS Code” (if you have it installed).


You can also open it in Gedit, VS Code, or Notepad — any text editor is fine.
## License

Copyright © Microsoft Corporation All rights reserved.<br />
Expand Down
9 changes: 9 additions & 0 deletions app.pyO
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
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)