1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:22:07 +02:00
tldr/pages/common/rails.md
Lena b596b78b18
pages/*: standardize mentioning subcommands without the main command (#13626)
* pages/*: standardize mentioning subcommands without the main command

* CONTRIBUTING: clarify that pages should only mention the subcommand
2024-10-04 21:14:41 +02:00

25 lines
565 B
Markdown

# rails
> A server-side MVC framework written in Ruby.
> Some subcommands such as `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`