Capistrano Kyan
Capistrano plugin that includes a collection of tasks we find useful here at Kyan.
Usage
Setup
Add the library to your Gemfile:
group :development do
gem 'capistrano-kyan'
end
And load it into your deployment script config/deploy.rb:
require 'capistrano-kyan'
Add kyan vhost task hook:
after "deploy:setup", "kyan:vhost:setup"
Add kyan db task hook:
after "deploy:setup", "kyan:db:setup"
Test
First, make sure you're running the latest release:
cap deploy:setup
Then you can test each individual task:
cap kyan:db:setup
cap kyan:vhost:setup
Configuration
You can modify any of the following options in your deploy.rb config.
vhost_env- Set vhost environment. Default torails_envvariable.vhost_tmpl_path- Set vhost template path. Default toconfig/deploy.vhost_tmpl_name- Set vhost template name. Default tovhost.conf.erb.vhost_server_path- Set vhost server path. Default to/etc/nginx/sites-enabled.vhost_server_name- Set vhost server name. Default toFile.basename(deploy_to).
I'm assuming you are using capistrano multistage.
Available Tasks
To get a list of all capistrano tasks, run cap -T:
cap kyan:db:setup # Creates a database.yml file in the apps shared path.
cap kyan:vhost:setup # Creates and symlinks an Nginx virtualhost entry.
License
See LICENSE file for details.