CI/CD Notes
1. Introduction CI/CD is a continuous method of software development, where you continuously build, test, deploy, and monitor iterative code changes. CI - Continue Integration used to make sure new code integrates cleanly with the existing codebase. (Can this code be safely merged?) CD - Continue Delivery / Continues Deployment used to handle releasing the software Continuous Delivery: The system automatically prepares a release, but deployment to production requires manual approval. Continuous Deployment: Everything is automatic. Example: ...