Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 395 Bytes

app-service-web-create-zip.md

File metadata and controls

13 lines (9 loc) · 395 Bytes

Create a project ZIP file

Make sure you're still in the root directory of the sample project. Create a ZIP archive of everything in your project. The following command uses the default tool in your terminal:

# Bash
zip -r myAppFiles.zip .

# PowerShell
Compress-Archive -Path * -DestinationPath myAppFiles.zip

Later, you upload this ZIP file to Azure and deploy it to App Service.