diff --git a/README.md b/README.md index 0349143d..ad85549e 100644 --- a/README.md +++ b/README.md @@ -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.
diff --git a/app.pyO b/app.pyO new file mode 100644 index 00000000..75f22b21 --- /dev/null +++ b/app.pyO @@ -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)