Skip to content

Instantly share code, notes, and snippets.

@rkjha
Last active December 10, 2015 17:29
Show Gist options
  • Save rkjha/4468478 to your computer and use it in GitHub Desktop.
Save rkjha/4468478 to your computer and use it in GitHub Desktop.
Capistrano deploy.rb
require "bundler/capistrano"
#require "delayed/recipes"
server "YOUR_IP_ADDRESS", :web, :app, :db, primary: true
set :rails_env, "production" #added for delayed job
set :application, "YOUR_APP_NAME"
set :user, "mrhuman"
set :deploy_to, "/home/#{user}/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false
set :scm, "git"
set :repository, "git@github.com:mrhuman/#{application}.git"
set :branch, "master"
default_run_options[:pty] = true
ssh_options[:forward_agent] = true
after "deploy", "deploy:cleanup" # keep only the last 5 releases
# for delayed_job
#after "deploy:stop", "delayed_job:stop"
#after "deploy:start", "delayed_job:start"
#after "deploy:restart", "delayed_job:restart"
namespace :deploy do
%w[start stop restart].each do |command|
desc "#{command} unicorn server"
task command, roles: :app, except: {no_release: true} do
run "/etc/init.d/unicorn_#{application} #{command}"
end
end
task :setup_config, roles: :app do
sudo "ln -nfs #{current_path}/config/nginx.conf /etc/nginx/sites-enabled/#{application}"
sudo "ln -nfs #{current_path}/config/unicorn_init.sh /etc/init.d/unicorn_#{application}"
sudo "rm /etc/nginx/sites-enabled/default"
end
after "deploy:setup", "deploy:setup_config"
desc "Make sure local git is in sync with remote."
task :check_revision, roles: :web do
unless `git rev-parse HEAD` == `git rev-parse origin/master`
puts "WARNING: HEAD is not the same as origin/master"
puts "Run `git push` to sync changes."
exit
end
end
before "deploy", "deploy:check_revision"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment