How to create a git workflow on a hero?

        Production        
                         
         Staging          
           ↗↘          
       Development        
         ↗↙ ↖↘          
  Developer1  Developer2  

How to create git workflow on heroku?

+3
source share
1 answer

It depends on whether you have one Git repository on Heroku side or several.

With multiple repos, you can assign each one to a development life cycle stage.
But, given the architecture underlying the Git repo, it would be easier to control the speakers relative to one repo (see here for more information on Dynos ).

, ( dev, staging, prod) Heroku ( , , ).

+1

Source: https://habr.com/ru/post/1794076/


All Articles