1 / 10

Your web apps from code to deployed in a minute!

Your web apps from code to deployed in a minute!. Nick King – Software Engineer II @ NickBKing nicking@microsoft.com. THR1110. Setup – Install Azure CLI. Windows Download the MSI installer: https://aka.ms/installazurecliwindows Mac brew update && brew install azure-cli

dlott
Download Presentation

Your web apps from code to deployed in a minute!

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Your web apps from code to deployed in a minute! Nick King – Software Engineer II @NickBKing nicking@microsoft.com THR1110

  2. Setup – Install Azure CLI • Windows • Download the MSI installer: https://aka.ms/installazurecliwindows • Mac • brew update && brew install azure-cli • Run in your browser • shell.azure.com • Not recommended for this session

  3. Let’s deploy a Node app • Create a Resource Group az group create -n rgname -l “West US” • Create an App Service Plan azappservice plan create -n aspname -g rgname --sku STANDARD --is-linux --number-of-workers 1 • Create an App azwebapp create -n appname -g rgname -p aspname -r “NODE|8.0” • Change the app setting to enable builds after zip deployments azwebapp config appsettings set -n appname -g rgname --settings “SCM_DO_BUILD_DURING_DEPLOYMENT=TRUE" • Deploy your code using zip deployment (you need to zip the content) azwebapp deployment source config-zip -n appname -grgname --src .

  4. azwebapp up • Provide the code and the command will do the rest • Provide a name for the app. The command will figure out the language, create an app, deploy it • Multi language support • Get the command • Node JS • ASP .Net • .Net Core • Java • Static Sites az extension add -n webapp

  5. Demo It's easy az pie

  6. Road Map • Work for all languages supported by App Service • Extend support to container apps and Azure Functions • Extend support to create slots • Move to Core CLI • Others  Give us your feedback

  7. Learn More aka.ms/command-line-tools

  8. Please evaluate this sessionYour feedback is important to us! Please evaluate this session through MyEvaluations on the mobile appor website. Download the app:https://aka.ms/ignite.mobileApp Go to the website: https://myignite.techcommunity.microsoft.com/evaluations

More Related