Skip to content

Instantly share code, notes, and snippets.

@patte
Forked from yctay/figaro-capistrano.rb
Last active November 7, 2022 17:37
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save patte/7684360 to your computer and use it in GitHub Desktop.
Save patte/7684360 to your computer and use it in GitHub Desktop.
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"
@mckenn
Copy link

mckenn commented Jan 22, 2014

Thanks! How execute those tasks before migration task in case i store DB credentials in application.yml?

@mengqing
Copy link

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

@mckenn
Copy link

mckenn commented Oct 22, 2014

thx!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment