mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 19:02:09 +02:00
rails: add page (#1696)
This commit is contained in:
commit
383e2fd9e6
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
|
||||
|
||||
> A server-side MVC framework written in Ruby.
|
||||
|
||||
- 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`
|
Loading…
Add table
Reference in a new issue