1

それらを上書きするための capifony/capistrano タスクはどこにありますか。

cap deploy:setup を実行するときにそれを変更して、サーバー構造に対応するためのシンボリックリンクを追加する必要があります。それは可能ですか?または、少なくともこれを行うための新しいタスクを作成します。

4

1 に答える 1

4

cap タスクのリスト : http://capitation.rubyforge.org/recipes/deploy.html

タスクをオーバーライドするには、次のようにします。

 namespace :deploy do
  task :start do ; end
  task :stop do ; end
  task :restart do ; end
  task :update_code do ; end #override this task to prevent capistrano to upload on servers
  task :symlink do ; end #don't create the current symlink to the last release
 end
于 2012-07-27T03:22:46.237 に答える