Best practices for deploying tools & scripts to production?

后端 未结 6 537
夕颜
夕颜 2021-01-30 07:29

I\'ve got a number of batch processes that run behind the scenes for a Linux/PHP website. They are starting to grow in number and complexity, so I want to bring a small amount o

6条回答
  •  攒了一身酷
    2021-01-30 08:07

    The first thing to do is get all these scripts into a source control repository (svn or git are good) so that you can track changes to these scripts over time.

    If you are interested in ruby, check out Capistrano, it is well suited deploying things to multiple machines in a cluster, and is fairly easy to set up. It can read files directly from your version control system.

提交回复
热议问题