mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 07:35:24 +02:00
Add tldr for rails command.
This commit is contained in:
parent
30c8d98ee9
commit
a9b78925a7
1 changed files with 23 additions and 0 deletions
23
pages/common/rails.md
Normal file
23
pages/common/rails.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# rails
|
||||
|
||||
> Ruby on Rails, or Rails, is a server-side MVC framework written in Ruby under the MIT License.
|
||||
|
||||
- Check current version of rails:
|
||||
|
||||
`rails --version`
|
||||
|
||||
- Create a new rails project:
|
||||
|
||||
`rails new "{{name_of_project}}"`
|
||||
|
||||
- Start local server for current project on port 3000 (while in projects root directory):
|
||||
|
||||
`rails server`
|
||||
|
||||
- Start local server for current project on a specified port:
|
||||
|
||||
`rails server -p "{{port_number}}"`
|
||||
|
||||
- Open console to interact with applicaiton from command line (while in projects root directory):
|
||||
|
||||
`rails console`
|
Loading…
Add table
Reference in a new issue