Go to file
Florian Schwab 499761d84a use password from database.yml for dbconsole 2016-10-04 16:41:31 +02:00
lib use password from database.yml for dbconsole 2016-10-04 16:41:31 +02:00
.gitignore initial import 2013-11-09 15:58:59 +01:00
CHANGELOG.md use password from database.yml for dbconsole 2016-10-04 16:41:31 +02:00
Gemfile initial import 2013-11-09 15:58:59 +01:00
LICENSE.txt initial import 2013-11-09 15:58:59 +01:00
README.md revert requiring the gem to work as before 2016-09-19 22:03:55 +02:00
Rakefile initial import 2013-11-09 15:58:59 +01:00
capistrano-rails-console.gemspec switch to sshkit-interactive 2016-09-16 00:39:27 +02:00

README.md

Gem Version Dependencies Code Climate

Join the chat

Capistrano::Rails::Console

Remote rails console and dbconsole for capistrano.

Installation

Add this line to your application's Gemfile:

gem 'capistrano-rails-console', require: false

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-rails-console

Usage

Require in Capfile to use the default task:

require 'capistrano/rails/console'

Run a remote rails console with:

$ cap production rails:console

You can also start a sandbox session:

$ cap production rails:console sandbox=1

Or run a dbconsole:

$ cap production rails:dbconsole

Options

Rails environment

set :console_env, :production # use different environment than deployment environment (rails_env)

User

set :console_user, :appuser # run rails console as appuser through sudo
set :console_user, nil # explicitly disable switching user through sudo

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ydkn/capistrano-rails-console.

License

The gem is available as open source under the terms of the MIT License.