First, in your project, you need to install Capistrano 3 for Rails. You can find the official documentation here Show archive.org snapshot .
So your Gemfile
should have content along these lines somewhere:
group :development do
gem 'capistrano', require: false
gem 'capistrano-rails', require: false
end
You should already have the bundler
Gem installed, so you can install all necessary Gems for your Project by simply executing bundle
.
$ bundle
After this you will have installed Capistrano 3 and can now use it to set up the deployment tasks for the staging
and production
environment your Project like so:
$ bundle exec cap install STAGES=staging,production
Posted by Marius Schuller to opscomplete (2018-12-13 15:07)