我想database.yml
通过使其不受版本控制来保护我的文件。因此,我的 Capistrano 部署方案中有两个任务:
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
你能帮忙填写第一个任务吗?