What is your favorite web app deployment workflow with SVN?

后端 未结 11 1223
陌清茗
陌清茗 2021-01-31 00:29

We are currently using a somewhat complicated deployment setup that involves a remote SVN server, 3 SVN branches for DEV, STAGE, and PROD, promoting code between them through pa

11条回答
  •  滥情空心
    2021-01-31 00:55

    Three branches just sounds like extra work.

    Environmental differences can be handled by having different versions of the relevant files in the trunk. i.e. database.yml & database.yml.prod. The deployment process should be environmentally aware and simply copy the per-environment files over the default ones.

提交回复
热议问题