How do you deploy a website to your webservers?

前端 未结 7 681
礼貌的吻别
礼貌的吻别 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:25

    You need to look at:

    • Continuous Integration
    • Running unit tests on check-in of code to check it is bug free
    • Potentially rejecting code if it contains a bug
    • Having nightly builds
    • Releasing only the last build that was bug free

    You may not get to a perfect solution, especially not at first, but the more you use your chosen solution, the more comfortable everyone will get and be able to make suggestions on improving it.

    0 讨论(0)
提交回复
热议问题