Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.
Jacques Beukes edited this page Mar 10, 2015 · 4 revisions

Welcome to the easy-call wiki!

Branching Strategy

This repo works with the 'standard' git-flow branching structure supported by SourceTree. That means the branches look like so:

  • Production branch: master
  • Development branch: develop
  • Feature branch prefix: feature/
  • Release branch prefix: release/
  • Hotfix branch prefix: hotfix/

Since this app is meant to be deployed on Heroku the suggested way to run your environments is as follows:

  • Production is deployed from master
  • Staging is deployed from develop
  • One or more Test environments deployed from feature/ or release/ as needed

At the moment this is a small application with a dev team of one, so it is unlikely that release/ branches will be used in the near future and any testing that needs to be done against an environment deployed on Heroku will be done in Staging.

Clone this wiki locally