2025-01-26 11:17:39 -08:00
|
|
|
# rails console
|
|
|
|
|
|
|
|
> Interact with a Rails application.
|
|
|
|
> More information: <https://guides.rubyonrails.org/command_line.html#bin-rails-console>.
|
|
|
|
|
|
|
|
- Start the Rails console:
|
|
|
|
|
|
|
|
`rails console`
|
|
|
|
|
|
|
|
- Start the Rails console and roll back all data modifications on exit:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`rails console {{[-s|--sandbox]}}`
|
2025-01-26 11:17:39 -08:00
|
|
|
|
|
|
|
- Start the Rails console on a specified environment:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`rails console {{[-e|--environment]}} {{dev|test|production|...}}`
|
2025-01-26 11:17:39 -08:00
|
|
|
|
|
|
|
- Display help:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`rails console {{[-h|--help]}}`
|