Skip to content

Instantly share code, notes, and snippets.

@andrebautista
Created June 30, 2014 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrebautista/95f9ffd9b3e5b73d1323 to your computer and use it in GitHub Desktop.
Save andrebautista/95f9ffd9b3e5b73d1323 to your computer and use it in GitHub Desktop.
# config valid only for Capistrano 3.1
lock '3.1.0'
set :application, 'gymsight'
set :repo_url, 'git@github.com:andrebautista/gymsight.git'
set :branch, 'master'
# Default branch is :master
# ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }
# Default deploy_to directory is /var/www/my_app
set :deploy_to, '/home/deploy/gymsight'
# Default value for :scm is :git
# set :scm, :git
# Default value for :format is :pretty
# set :format, :pretty
# Default value for :log_level is :debug
# set :log_level, :debug
# Default value for :pty is false
# set :pty, true
# Default value for :linked_files is []
set :linked_files, %w{config/database.yml}
# Default value for linked_dirs is []
set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}
# Default value for default_env is {}
# set :default_env, { path: "/opt/ruby/bin:$PATH" }
# Default value for keep_releases is 5
# set :keep_releases, 5
namespace :deploy do
desc 'Restart application'
task :restart do
on roles(:app), in: :sequence, wait: 5 do
# Your restart mechanism here, for example:
execute :touch, release_path.join('tmp/restart.txt')
end
end
# 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:compile_assets", "figaro:symlink"
after :publishing, 'deploy:restart'
after :finishing, 'deploy:cleanup'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment