Created
June 12, 2013 20:11
-
-
Save ismarsantos/5768702 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
require "bundler/capistrano" | |
# General | |
set :application, "application_name" | |
set :domain, "www.your_domain.com" | |
set :user, "deploy" | |
set :runner, "deploy" | |
set :use_sudo, false | |
set :deploy_to, "/var/www/#{application}" | |
set :repository_cache, "#{application}_cache" | |
set :environment, "production" | |
# Roles | |
role :web, domain | |
role :app, domain | |
role :db, domain, :primary => true | |
# GIT | |
set :repository, "[email protected]:your_username/your_repo.git" | |
set :branch, "master" | |
set :keep_releases, 3 | |
set :deploy_via, :remote_cache | |
set :scm, :git | |
# SSH | |
default_run_options[:pty] = true | |
ssh_options[:forward_agent] = true | |
ssh_options[:paranoid] = true # comment out if it gives you trouble. newest net/ssh needs this set. | |
######## Callbacks - No More Config ######## | |
after 'deploy:symlink', 'deploy:cleanup' # makes sure there's only 3 deployments, deletes the extras | |
# Custom Tasks | |
namespace :deploy do | |
task(:start) {} | |
task(:stop) {} | |
desc "Restart Application" | |
task :restart, :roles => :web, :except => { :no_release => true } do | |
run "touch #{current_path}/tmp/restart.txt" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment