database.yml
ファイルをバージョン管理から外して保護したいと考えています。したがって、私の Capistrano デプロイ レシピには 2 つのタスクがあります。
task :copy_db_config do
# copy local config file if it exists and is more
# recent than the remote one
end
task :symlink_db_config do
run "ln -nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml"
end
最初のタスクを完了するのを手伝ってもらえますか?