-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(scully): add spanish translation of the pre-requisites file and …
…update getting started (#477) * docs(scully): update the spanish translation of the getting started file * docs(scully): add spanish translation of the pre-requisites file * docs(scully): fix typo
- Loading branch information
1 parent
0d66268
commit 8769a3e
Showing
2 changed files
with
47 additions
and
5 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
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,44 @@ | ||
--- | ||
title: Requisitos previos | ||
order: 100 | ||
--- | ||
|
||
# Requisitos previos | ||
|
||
Para comenzar a usar Scully, se necesita una aplicación Angular existente con **v8.x.x** o **v9.x.x** o puede crear una nueva aplicación Angular 9 ejecutando el siguiente comando: | ||
|
||
```bash | ||
npx -p @angular/cli ng new my-scully-app | ||
``` | ||
|
||
Si el comando anterior falla, instale el Angular CLI globalmente con el siguiente comando: | ||
|
||
```bash | ||
npm install -g @angular/cli | ||
``` | ||
|
||
Luego, crea una nueva aplicación. | ||
|
||
```bash | ||
ng new my-scully-app | ||
``` | ||
|
||
#### IMPORTANTE: | ||
|
||
_Scully depende del módulo de rutas de la aplicación para generar las páginas del sitio web_ | ||
|
||
Agregue un módulo de rutas con el siguiente comando: | ||
|
||
```bash | ||
ng generate module app-routing --flat --module=app | ||
``` | ||
|
||
Encuentre más información sobre el Angular CLI aquí [👉 angular.io/cli](https://angular.io/cli) | ||
|
||
#### IMPORTANTE: | ||
|
||
_Scully utiliza Chromium. Por lo tanto, su sistema operativo, así como sus derechos de administrador, deben permitir su instalación y ejecución._ | ||
|
||
### Versión de Node: | ||
|
||
- Node.js 10 o mayor. |