**Command:** `deploy:setup [platform]`
/plugin marketplace add nguyenthienthanh/ccpm-team-agents/plugin install nguyenthienthanh-aura-frog-aura-frog-2@nguyenthienthanh/ccpm-team-agentsdeploy/Command: deploy:setup [platform]
Agent: devops-cicd
Version: 1.0.0
Setup deployment configuration for various platforms (Vercel, AWS, GCP, Azure, Docker, Kubernetes).
# Auto-detect and setup
deploy:setup
# Specific platform
deploy:setup --platform vercel
deploy:setup --platform aws
deploy:setup --platform docker
deploy:setup --platform kubernetes
Example Output (Vercel):
// vercel.json
{
"version": 2,
"builds": [
{
"src": "package.json",
"use": "@vercel/next"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/$1"
}
],
"env": {
"DATABASE_URL": "@database-url",
"API_KEY": "@api-key"
}
}
Command: deploy:setup Version: 1.0.0