← スキル一覧に戻る

azd-aca-deploy
by naoki1213mj
uv + Ruff + Azure template
⭐ 0🍴 0📅 2026年1月6日
SKILL.md
name: azd-aca-deploy description: Deploy to Azure Container Apps using azd (provision + deploy workflow)
Azure Container Apps Deployment Skill
Use this skill when asked to:
- "deploy to Azure"
- "azd up"
- "provision infrastructure"
- "update the app in Azure"
Prerequisites
Before deploying:
- azd installed:
azd version - Logged in:
azd auth login - Environment selected:
azd env list
Deployment Strategies
Full Deployment (First Time)
azd up
This runs provision + deploy in one command.
Incremental Updates
| Change Type | Command | Speed |
|---|---|---|
| Bicep/Infra only | azd provision | Slower |
| App code only | azd deploy | Fast |
| Both | azd up | Full |
Recommended Workflow
For Code Changes
# 1. Run quality checks
uv run python .github/skills/python-quality/scripts/check.py
# 2. Deploy app only (fast)
azd deploy
For Infrastructure Changes
# 1. Preview changes
az deployment group what-if \
--resource-group <rg> \
--template-file infra/main.bicep
# 2. Apply changes
azd provision
Environment Management
# List environments
azd env list
# Create new environment
azd env new <name>
# Switch environment
azd env select <name>
# Delete environment (and resources)
azd down
Troubleshooting
Common Issues
- Auth expired: Run
azd auth login - Wrong subscription: Check
az account show - Resource conflicts: Run
azd downandazd upfresh
View Logs
# Container Apps logs
az containerapp logs show \
--name <app-name> \
--resource-group <rg> \
--type console
Quick Script
For automated deployment:
uv run python .github/skills/azd-aca-deploy/scripts/deploy.py
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です