bin | ||
lib | ||
spec | ||
.gitignore | ||
capistrano.gemspec | ||
Gemfile | ||
LICENSE.txt | ||
Rakefile | ||
README.md |
Capistrano
wip - aim here is to get 'something' up and running
TODO:
-
harness rake for dsl
-
create a working capify equivalent
- create Capfile
- create lib/tasks/deploy
- create config/deploy/
- write config/deploy.rb with example configuration
-
basic configuration object
-
basic 'capistrano/deploy' noop example
-
before/after task hooks
-
handle multi stage
-
pass any necessary configuration from deploy.rb to SSHKit
-
support set/fetch/role configuration
-
basic deploy
-
ask
-
add
deploy:check
-
prefer
roles(:all)
overall_roles
-
simplify default deploy
-
support setting default environment variables
-
support existing significant configuration variables
-
set configuration defaults, add commented out examples to templates
-
basic rollback
-
support primary servers
on primary :db
-
rails specific tasks (see here)
-
auto load tasks for scm based on variable
-
run locally
-
better descriptions for tasks
-
add examples to README
-
add task packaging run through
Installation
Add this line to your application's Gemfile:
gem 'capistrano', github: 'capistrano/capistrano', branch: :v3
And then execute:
$ bundle --binstubs
Capify:
$ cap install
This creates the following files:
Capfile
lib/deploy/tasks
config/deploy/staging.rb
config/deploy/production.rb
To create different stages:
$ cap install STAGES=local,sandbox,qa,production
Usage
$ cap -vT
$ cap staging deploy
$ cap production deploy
$ cap production deploy --dry-run
$ cap production deploy --prereqs
Configuration
# config/deploy.rb
set :application, 'example app'
# config/deploy/production.rb
set :stage, :production
ask :branch, :master
role :app, %w{example.com example2.com}
role :web, %w{example.com}
role :db, %w{example.com}
# the first server in the array is considered primary
Tasks
Before / After
Where calling on the same task name, executed in order of inclusion
# call an existing task
before :starting, :ensure_user
after :finishing, :notify
# or define in block
before :starting, :ensure_user do
#
end
after :finishing, :notify do
#
end
Console
Execute arbitrary remote commands
$ cap staging console