collect gems and recipes for capistrano.
Add this line to your application's Gemfile:
gem "capsum", require: false
Add below files to your application.
require 'capistrano/setup'
require 'capistrano/deploy'
require "capsum/typical" # for rails project
# require "capsum/sidekiq"
require "capsum/rsync"
install_plugin Capsum::Rsync
set :application, 'shipin8'
# fetch(:linked_files).concat %w{
# config/database.yml
# config/settings.local.rb
# }
# fetch(:linked_dirs).concat %w{
# public/uploads
# }
set :deploy_to, -> { "/var/www/default/apps/#{fetch(:application)}" }
server 'host', user: 'www-data', roles: %w[web app db], primary: true # whenever: true, sidekiq: true
# bundle_env_variables[:http_proxy] = bundle_env_variables[:https_proxy] = "http://http_proxy_host:port"
now, you can use below command to delpoy your application. for more information please see the source code.
cap uat deploy
- Fork it ( https://github.com/sunteya/capsum/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request