Skip to content

artiom/capistrano-unicorn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Capistrano Unicorn

Capistrano plugin that integrates Unicorn tasks into capistrano deployment script.

Installation

gem install capistrano-unicorn

Usage

Add the gem to your Gemfile:

group :development do
  gem 'capistrano-unicorn'
end

Add unicorn plugin into your deploy.rb file.

NOTE: Should be placed after all hooks

require 'capistrano-unicorn'

This should add a unicorn server start task after deploy:restart.

Unicorn configuration file should be placed under config/unicorn/YOUR_ENV.rb

To test if it works type:

cap unicorn:start
cap unicorn:stop
cap unicorn:reload

NOTE: This plugin uses bundler.

Configuration options

  • unicorn_env — Set unicorn environment. Default to "rails_env" variable.
  • unicorn_pid — Set unicorn PID file path. Default to "current_path/tmp/pids/unicorn.pid"

License

Copyright © 2011 Dan Sosedoff.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Capistrano integration for Unicorn!

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%