Capistrano ...an introduction
I show you an introduction to Capistrano and why it rocks my world! Supporting GitHub repository here: https://github.com/davzie/capistrano-...
cap production deploy
Ruby on Rails - Railscasts PRO #133 Capistrano Tasks (revised)
Oct 23, 2014 Learn the basics of writing Capistrano tasks, how to set variables, and run commands on a remote server. Then peak into the internals of Capistrano's deploy tasks to see how they work.
How to deploy RubyonRails project to AWS EC2 using capistrano May 5, 2016 This video about deployment procedure of your ruby on rails project to Amazon Web services( AWS ) EC2 platform using Capistrano Gem.
Ruby Snack #14 Deploy to Digial Ocean Part 3: Capistrano and Ready other Files
This episode takes you through installing Capistrano and setting up other files for deploying to a production server. We'll even password protect a staging site.
Capistrano: Deploying Ruby on Rails Applications to Multiple Servers
Jun 24, 2011 This episode demonstrates how to extend deployment to deploy to stage and production. Overall it's rather simple. All it entails is creating a new task for each stage you want to deploy to with the settings you need changed.
Category
Capistrano is a remote server automation tool.
It supports the scripting and execution of arbitrary tasks, and includes a set of sane-default deployment workflows.
- Reliably deploy web application to any number of machines simultaneously, in sequence or as a rolling set
- To automate audits of any number of machines (checking login logs, enumerating uptimes, and/or applying security patches)
- To script arbitrary workflows over SSH
- To automate common tasks in software teams.
- To drive infrastructure provisioning tools such as chef-solo, Ansible or similar.
- Capistrano is also very scriptable, and can be integrated with any other Ruby software to form part of a larger tool.