Skip to content

Branching Strategy

Jessica Chioma edited this page Jul 19, 2024 · 4 revisions

Branching Strategy

Development Branch

  • Merge code into the dev branch to trigger deployment to the development environment.
  • Development deployments are accessible at http://dev.domain-name.com.

Production Branch

  • Merge dev into main for production deployment.
  • Production deployments are accessible at http://domain.com.

Merging Guidelines

  • Ensure all tests pass before merging code.
  • Use pull requests to facilitate code reviews and maintain code quality.