Created
August 6, 2012 10:53
-
-
Save t-javcam/3273427 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" | |
set :application, "blog_app" | |
set :user, "blogger" | |
set :scm, :git | |
set :repository, "https://github.com/YOUR_GITHUB_ACCOUNT/YOUR_REPO.git" | |
set :branch, "master" | |
set :use_sudo, true | |
server "YOUR_IP_ADDRESS_HERE", :web, :app, :db, primary: true | |
set :deploy_to, "/home/#{user}/apps/#{application}" | |
default_run_options[:pty] = true | |
ssh_options[:forward_agent] = true | |
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 "mkdir -p #{shared_path}/config" | |
end | |
after "deploy:setup", "deploy:setup_config" | |
task :symlink_config, roles: :app do | |
# Add database config here | |
end | |
after "deploy:finalize_update", "deploy:symlink_config" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment