System Grab Bag

View all TLDR pages from common (or from all pages)

rails

A server-side MVC framework written in Ruby. Some subcommands such as rails generate have their own usage documentation. More information: https://guides.rubyonrails.org/command_line.html.
  • Create a new rails project:
    rails new "{{project_name}}"
  • Start local server for current project on port 3000:
    rails server
  • Start local server for current project on a specified port:
    rails server -p "{{port}}"
  • Open console to interact with application from command-line:
    rails console
  • Check current version of rails:
    rails --version

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.