1021 B
1021 B
name, description, domain, trigger, always_on
| name | description | domain | trigger | always_on | ||
|---|---|---|---|---|---|---|
| deployment | Application deployment and DevOps practices |
|
When deploying applications or managing infrastructure | false |
Deployment Skill
Pre-deployment Checklist
- All tests passing
- No security vulnerabilities (check dependencies)
- Environment variables configured
- Database migrations ready
- Backup plan in place
Common Deployment Targets
- GitHub Pages — Static sites
- Vercel / Netlify — Frontend apps
- Docker — Containerized applications
- Cloud VMs — Custom deployments
Best Practices
- Never deploy directly to production without testing
- Use environment variables for all secrets
- Set up CI/CD pipelines when possible
- Keep deployment scripts version-controlled
- Monitor after deployment
- Have a rollback plan
Security
- No secrets in code or version control
- Use HTTPS everywhere
- Keep dependencies updated
- Set appropriate file permissions
- Use least-privilege access