As a software professional, you might have already been aware of different software development methodologies that people practice. Irrespective of the methodology being followed, one will have multiple environments such as dev, staging, and production where the application life cycle needs to be followed with these critical stages related to development:
- Develop based on the requirements
- Build the application and fix any errors
- Deploy/release the package to an environment (Dev / Stage / Prod)
- Test against the requirements
- Promote the release to the next environment (from Dev to Stage and Stage to Prod)
Please note that for the sake of simplicity, the initial stages, such as requirement gathering, planning, design, and architecture, are excluded just to emphasize the stages that are relevant to this chapter.
For each change that you make to the software, we need...