-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rails-new: add Spanish translation (#15612)
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# rails new | ||
|
||
> Crea una nueva aplicación Rails. | ||
> Más información: <https://guides.rubyonrails.org/command_line.html#rails-new>. | ||
- Crea una aplicación Rails llamada `blog` en el directorio actual: | ||
|
||
`rails new blog` | ||
|
||
- Crea una aplicación Rails con una configuración de tipo solo API: | ||
|
||
`rails new {{nombre_de_la_app}} --api` | ||
|
||
- Crea una aplicación Rails con `postgresql` como base de datos: | ||
|
||
`rails new {{nombre_de_la_app}} --database postgresql` | ||
|
||
- Crea una aplicación Rails sin generar archivos JavaScript: | ||
|
||
`rails new {{nombre_de_la_app}} --skip-javascript` | ||
|
||
- Muestra la ayuda: | ||
|
||
`rails new --help` |