1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
Remote multi-server automation tool
Find a file
2011-04-06 09:58:32 +01:00
bin Fixed mispeling 2011-01-12 09:06:14 -05:00
lib Merge branch 'add-str-support-to-respond_to' of https://github.com/baroquebobcat/capistrano into baroquebobcat-add-str-support-to-respond_to 2011-03-16 20:39:52 +01:00
test Fix space sensitivity in the tests, not an issue for sh/bash but nice to have a clean suite (Thanks to vissi for the prompt to fix this the easy way) 2011-03-23 15:27:45 +01:00
.gitignore Test Gemspec. (Should resolve #187 (where Jeweler generates a Gemspec which confuses Bundler) 2011-03-22 18:16:54 +01:00
.rvmrc .rvmrc should not force a specific gemset, but is useful for declaring a ruby version 2011-03-30 18:26:25 +01:00
capistrano.gemspec Use gemspec/Gemfile setup recommended by Bundler 2011-04-06 09:58:32 +01:00
CHANGELOG Changelog tweaks, and documentation relating to 2.5.20 2011-03-16 20:26:42 +01:00
Gemfile Use gemspec/Gemfile setup recommended by Bundler 2011-04-06 09:58:32 +01:00
Rakefile Use gemspec/Gemfile setup recommended by Bundler 2011-04-06 09:58:32 +01:00
README.mdown Updating the readme to be formatted correctly and link the documenation that I just finished moving to Github wiki. 2010-10-04 14:33:58 +02:00
rvmrc.sample .rvmrc should not force a specific gemset, but is useful for declaring a ruby version 2011-03-30 18:26:25 +01:00
VERSION Changelog tweaks, and documentation relating to 2.5.20 2011-03-16 20:26:42 +01:00

Capistrano

Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH. It uses a simple DSL (borrowed in part from Rake, http://rake.rubyforge.org/) that allows you to define tasks, which may be applied to machines in certain roles. It also supports tunneling connections via some gateway machine to allow operations to be performed behind VPN's and firewalls.

Capistrano was originally designed to simplify and automate deployment of web applications to distributed environments, and originally came bundled with a set of tasks designed for deploying Rails applications.

Documentation

DEPENDENCIES

If you want to run the tests, you'll also need to have the following dependencies installed:

ASSUMPTIONS

Capistrano is "opinionated software", which means it has very firm ideas about how things ought to be done, and tries to force those ideas on you. Some of the assumptions behind these opinions are:

  • You are using SSH to access the remote servers.
  • You either have the same password to all target machines, or you have public keys in place to allow passwordless access to them.

Do not expect these assumptions to change.

USAGE

In general, you'll use Capistrano as follows:

  • Create a recipe file ("capfile" or "Capfile").
  • Use the cap script to execute your recipe.

Use the cap script as follows:

cap sometask

By default, the script will look for a file called one of capfile or Capfile. The someaction text indicates which task to execute. You can do "cap -h" to see all the available options and "cap -T" to see all the available tasks.

LICENSE:

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.