Skip to content

Commit

Permalink
rails-new: add Spanish translation (#15612)
Browse files Browse the repository at this point in the history
  • Loading branch information
kant authored Feb 6, 2025
1 parent c07ae6e commit 9f084d3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pages.es/common/rails-new.md
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`

0 comments on commit 9f084d3

Please sign in to comment.