app-service

Deploy and update Azure App Service web apps using the Azure CLI.

Updated Apr 10, 2026
One-click install
npx skills add https://github.com/theslashdojo/dojo --skill app-service
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: app-service
Source: https://github.com/theslashdojo/dojo/tree/main/nodes/azure/app-service
Command: npx skills add https://github.com/theslashdojo/dojo --skill app-service

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires azure-cli, bash, and includes scripts (resource) components.

What problem does it solve?

Deploy and update long-running HTTP applications to Azure App Service without manual cloud configuration, reducing friction for agents or CI pipelines that need to publish a website, change runtime settings, or inspect live logs.

Core Features & Use Cases

  • One-command deployments from a local project directory using az webapp up for fast iteration and automated resource provisioning.
  • Deterministic zip artifact deployment for CI/CD pipelines that build artifacts separately and require repeatable rollouts.
  • App settings management and live log streaming to validate rollouts and diagnose runtime issues in real time.
  • Use cases include publishing a Python or Node service from a developer workstation, promoting a CI-built zip artifact to an existing site, and updating runtime configuration without a full redeploy.

Quick Start

Deploy the current project directory to Azure App Service using az webapp up or deploy a built zip artifact and stream logs to verify the rollout.

Frequently Asked Questions about app-service

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a local project directory to Azure App Service using the Azure CLI?

Deploy a local project directory to Azure App Service using the `az webapp up` command for one-command provisioning and automated iteration without manual cloud configuration.

What is the best way to deploy a built zip artifact to an existing Azure web app?

Deploy a built zip artifact to an existing Azure web app using deterministic zip deploy actions, enabling repeatable rollouts for CI/CD pipelines that build artifacts separately before publishing.

Do I need an active Azure subscription and resource group to deploy a web app via the Azure CLI?

Yes, deploying Azure App Service web apps requires an active Azure subscription, a configured resource group context, and the Azure CLI installed locally to execute deployment and management commands.

Can I update app settings on Azure App Service without triggering a full redeployment?

Update Azure App Service runtime settings directly without a full redeployment by using the settings-set action to modify app settings and manage runtime configuration efficiently.

How do I view live logs for an Azure web app to verify a rollout?

View live logs for an Azure web app by executing the log-tail action to stream logs in real time, validating rollouts and diagnosing runtime issues immediately after deployment.