Search⌘ K
AI Features

Introduction to CI/CD

Explore the fundamentals of continuous integration and deployment (CI/CD) to automate merging code and deploying updates frequently. Understand how to safely deploy unfinished features using feature toggles and why creating a deployment pipeline early improves team efficiency and reduces deployment risks.

CI/CD

CI/CD stands for Continuous Integration and Continuous Deployment. Let’s quickly review the two terms individually.

Continuous integration

“Integrate what?”, you may ask yourself. The answer is source code, and making sure ...