How is the best way for the working progress, to be two developers working on the same building block, and both could test it on a developer server? Without interfering with each other's test of the building block.
How is the best way for the working progress, to be two developers working on the same building block, and both could test it on a developer server? Without interfering with each other's test of the building block.
Hello,
we use git, usually Bitbucket accounts. Each developer implements his feature in a new branch and, after my approval, I merge the feature branch to the master one.
Each developer should have a local DVM to debug their own versions. You can't debug properly in a shared machine because you stop the execution of the application.
The test server is intended for integration tests, and they should be performed for the quality assurance person, (me in my company).
Hi Troels,
The team i'm into use Git to share projects/files and we or:
Use VM instead of test servers
Use staging/Test enviroment (front in one, back in another)
Same enviroment, multiple manifests for the same project.
But we are a new develop team, still learning how to work better with this scenario, will be glad to hear how the other ppl here work with that.