Deploy this Python app to the cloud using a single Azure CLI command
The instructions below describe how to deploy the app in this repository using az webapp up. To try this at home, goto http://shell.azure.com and run the commands in the following sections. You can also run this locally from Azure CLI (http://aka.ms/cli) and make changes locally using VSCode -
Deploy the app using az webapp up
$ git clone <TODO> myPythonapp
$ cd myPythonapp
$ az webapp up --name myPythonapp --location centralus
Make changes and redeploy the app
$ code application.py
$ az webapp up --name myPythonapp --location centralus
Contributing
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.