mirror of
https://github.com/duthaho/claudekit.git
synced 2026-06-14 14:14:53 +03:00
970 B
970 B
/deploy - Deployment Command
Purpose
Deploy the application to a specified environment with proper checks.
Usage
/deploy [environment: staging | production]
Deploy to: $ARGUMENTS
Workflow
Pre-Deploy Checks
-
Verify Build
pnpm build -
Run Tests
pnpm test -
Security Scan
npm audit --audit-level=high
Deploy
-
Staging
# Deploy to staging environment -
Production (requires confirmation)
# Deploy to production environment
Post-Deploy
-
Verify Deployment
- Health checks
- Smoke tests
-
Monitor
- Check logs
- Watch metrics
Output
## Deployment Complete
**Environment**: staging
**Version**: v1.2.3
**URL**: https://staging.example.com
### Checks
- [x] Build successful
- [x] Tests passing
- [x] Security scan clean
- [x] Health check passed