dotnet-cqrs/docs/best-practices/deployment.md

473 B

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