How do you deploy a website to your webservers?

前端 未结 7 741
礼貌的吻别
礼貌的吻别 2020-12-24 08:59

At my company we have a group of 8 web developers for our business web site (entirely written in PHP, but that shouldn\'t matter). Everyone in the group is working on differ

7条回答
  •  无人及你
    2020-12-24 09:04

    You should consider using branching and merging for individual projects (on the same codebase), if they make huge changes to the shared codebase.

    we usually have a local dev enviroment for testing (meaning, webserver locally) for testing the uncommited code (you don't want to commit non functioning code at all), but that dev enviroment could even be on a separeate server using shared folders.

    however, committed code, should be deployed to a staging server for testing before putting it in production.

提交回复
热议问题