Skip to content

Instantly share code, notes, and snippets.

@snobu
Last active July 4, 2018 08:53
Show Gist options
  • Select an option

  • Save snobu/5a5126b908001fd13d113752f230c637 to your computer and use it in GitHub Desktop.

Select an option

Save snobu/5a5126b908001fd13d113752f230c637 to your computer and use it in GitHub Desktop.
App Service notes
# 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
@snobu

snobu commented Jul 4, 2018

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment