rails: add German translation (#7236)

feature/windows-fix-syntax-2
Juri Hahn 2021-11-29 01:54:57 +13:00 committed by GitHub
parent 5741d4dcf6
commit b6ba27a9ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
pages.de/common/rails.md Normal file
View File

@ -0,0 +1,25 @@
# rails
> Ein Server-seitiges MVC Webframework in Ruby.
> Manche Unterbefehle wie `rails generate` sind separat dokumentiert.
> Weitere Informationen: <https://guides.rubyonrails.org/command_line.html>.
- Erstelle ein neues Rails-Projekt:
`rails new "{{projektname}}"`
- Starte einen lokalen Server für das aktuelle Project unter Port 3000:
`rails server`
- Starte einen lokalen Server für das aktuelle Project unter einem bestimmten Port:
`rails server -p "{{port}}"`
- Starte eine interactive Konsole (REPL):
`rails console`
- Zeige die Versionsnummer von `rails` an:
`rails --version`