2

cap deployとはどう違いcap deploy:updateますか?

後者は更新を行うだけだと思います-より良い洞察はありますか?

4

2 に答える 2

3

あはは - ソースを読む ( deploy.rb)

namespace :deploy do
  desc <<-DESC
    Deploys your project. This calls both `update' and `restart'. Note that \
    this will generally only work for applications that have already been deployed \
    once. For a "cold" deploy, you'll want to take a look at the `deploy:cold' \
    task, which handles the cold start specifically.
  DESC
  task :default do
    update
    restart
  end

したがって、deploya を実行しupdate、次に a を実行しrestartます。

updateサーバーで更新を実行するだけです。

于 2013-07-11T19:19:58.633 に答える