mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 17:04:57 +02:00
rails: add Brazilian Portuguese translation
This commit is contained in:
parent
00fbfcca2f
commit
c46a4a291f
1 changed files with 24 additions and 0 deletions
24
pages.pt-BR/common/rails.md
Normal file
24
pages.pt-BR/common/rails.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# rails
|
||||
|
||||
> Framework MVC para o desenvolvimento de aplicações web, desenvolvido em Ruby.
|
||||
> Página oficial: <https://guides.rubyonrails.org/command_line.html>.
|
||||
|
||||
- Criar um novo projeto:
|
||||
|
||||
`rails new "{{nome_do_projeto}}"`
|
||||
|
||||
- Iniciar o servidor local, na porta 3000, para o projeto atual:
|
||||
|
||||
`rails server`
|
||||
|
||||
- Iniciar o servidor local, em um porta específica, para o projeto atual:
|
||||
|
||||
`rails server -p "{{porta}}"`
|
||||
|
||||
- Iniciar o console Rails para manipular o projeto atual utilizando o terminal:
|
||||
|
||||
`rails console`
|
||||
|
||||
- Verificar a versão atual do Rails:
|
||||
|
||||
`rails --version`
|
Loading…
Add table
Reference in a new issue