Continuous Development- how does it stack up?

Newbie here! (please be kind). Getting into the weeds over the continuous development/integration/delivery topic and curious how it’s impact your workflow and quality of product, if at all? Thank you!

Continuous integration tools are going to make deployments easier, faster, and less error prone/regression proof. The workflow will be completely dependent on the tools you choose to use. A simple step for anyone is to use a version control system and automatically deploy releases through a scheduler like Jenkins. Things can get much more complex then that but I would consider version control like git and automated deployments the foundation of CI. Taking things further include things like adding automated testing to ensure deployments don’t break the environment which they are being deployed to.

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.