Last active
July 4, 2018 08:53
-
-
Save snobu/5a5126b908001fd13d113752f230c637 to your computer and use it in GitHub Desktop.
App Service notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Deploy to App Service Windows | |
| # ----------------------------- | |
| # Download the web app binaries as .zip | |
| wget https://athensdata.blob.core.windows.net/pub/site.zip | |
| # Set the SITE_NAME variable to read the name of your web app | |
| export SITE_NAME=your-site-name | |
| # Deploy the .zip file to the web app | |
| az webapp deployment source config-zip --resource-group Athens --name $SITE_NAME --src site.zip |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://aka.ms/athens/deploy