Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @Jeff Tibbetts ,
For your second issue, I looked more closely at the command you used and found that the problem is due to the command syntax rather than the App Service or your ZIP package.
The backtick at the end of the --resource-group line and the formatting of the --src-path parameter are causing the CLI command to fail before it gets to the deployment step. Once you fix the command, the deployment should proceed as expected.
Please try using the valid Azure CLI format below:
az webapp deploy --resource-group <group-name> --name <app-name> --src-path <zip-package-path>
reference:
https://learn.microsoft.com/en-us/azure/app-service/deploy-zip?tabs=cli
If the answer is helpful, Please do click "Accept the answer” and Yes, this can be beneficial to other community members.
If you have any other questions, let me know in the "comments" and I would be happy to help you