mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 00:27:21 +03:00
24 lines
419 B
Markdown
24 lines
419 B
Markdown
# 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`
|