1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/index.markdown

34 lines
882 B
Markdown
Raw Normal View History

2013-06-12 16:44:00 -04:00
---
layout: default
title: A remote server automation and deployment tool written in Ruby.
---
### A Simple Task
2013-06-22 12:34:07 -04:00
{% prism ruby %}
role :demo, %w{example.com example.org, example.net}
2013-06-12 16:44:00 -04:00
task :uptime do |host|
2013-06-30 08:23:14 -04:00
on roles(:demo), in: :parallel do
2013-06-12 16:44:00 -04:00
uptime = capture(:uptime)
puts "#{host.hostname} reports: #{uptime}"
end
end
2013-06-22 12:34:07 -04:00
{% endprism %}
2013-06-12 16:44:00 -04:00
Capistrano extends the *Rake* DSL with methods specific to running commands
`on()` servers.
### For Any Language
Capistrano is written in Ruby, but it can easily be used to deploy any
2013-06-30 08:23:14 -04:00
language.
2013-06-12 16:44:00 -04:00
2013-06-30 08:23:14 -04:00
If your language or framework has special deployment requirements, Capistrano can easily be
2013-06-12 16:44:00 -04:00
extended to support them.
2013-06-30 11:26:18 -04:00
### Source Code
2013-06-30 07:30:03 -04:00
<div class="github-widget" data-repo="capistrano/capistrano"></div>
<div class="github-widget" data-repo="capistrano/rails"></div>
<div class="github-widget" data-repo="capistrano/documentation"></div>