-
-
Save patte/7684360 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :figaro do | |
desc "SCP transfer figaro configuration to the shared folder" | |
task :setup do | |
on roles(:app) do | |
upload! "config/application.yml", "#{shared_path}/application.yml", via: :scp | |
end | |
end | |
desc "Symlink application.yml to the release path" | |
task :symlink do | |
on roles(:app) do | |
execute "ln -sf #{shared_path}/application.yml #{current_path}/config/application.yml" | |
end | |
end | |
end | |
after "deploy:started", "figaro:setup" | |
after "deploy:symlink:release", "figaro:symlink" |
should change
execute "ln -sf #{shared_path}/application.yml #{current_path}/config/application.yml"
after "deploy:symlink:release", "figaro:symlink"
to
execute "ln -sf #{shared_path}/application.yml #{release_path}/config/application.yml"
after 'deploy:updating', 'figaro:symlink'
otherwise rake db:migrate will fail if you have figaro references in initializers
thx!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! How execute those tasks before migration task in case i store DB credentials in application.yml?