26 lines
473 B
Markdown
26 lines
473 B
Markdown
# Deployment
|
|
|
|
Deploy CQRS applications to production.
|
|
|
|
## Best Practices
|
|
|
|
### ✅ DO
|
|
|
|
- Use health checks
|
|
- Configure monitoring
|
|
- Plan database migrations
|
|
- Use configuration management
|
|
- Implement blue-green deployment
|
|
|
|
### ❌ DON'T
|
|
|
|
- Don't skip health checks
|
|
- Don't deploy without monitoring
|
|
- Don't skip migration testing
|
|
- Don't hardcode configuration
|
|
|
|
## See Also
|
|
|
|
- [Best Practices Overview](README.md)
|
|
- [Health Checks](../observability/health-checks/README.md)
|