j40-cejst-2/INSTALLATION-es.md
Shelby Switzer 5600443f1a
Update install steps (#359)
* Update INSTALLATION.md

Update INSTALLATION with more narrative text on how to install and start running parts of the app. We will need to update this soon with more info about the repo organization (once we have a `data` directory), but for now this reflects the current state of the repo.

* Update docs

Move client-specific things to client README, and update client README with steps to get the clientside app running locally.
2021-07-20 14:22:04 -04:00

2.8 KiB

Instalación de la herramienta Justice40

Read this in English

Software requerido

  • git, node, and an IDE

Instalar Git

MacOS

  1. Abra la terminal, escriba git y presione RETORNO.
  2. Si las herramientas de desarrollo no están instaladas, una ventana le pedirá que instale las herramientas de desarrollo.
  3. Abrieron la terminal y escribieron git --version y presionaron RETORNO.
  4. Valide que se devuelva un número de versión. Si es así, git está instalado correctamente.

Win10

Descargar desde sitio web

Instalar Homebrew (MacOS only)

  1. Abra la terminal y copie / pegue este comando y presione RETORNO.

/bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

  1. Valide la instalación escribiendo brew -v en la terminal y asegúrese de que se muestre un número de versión.

Instalar Node usando NVM

Esto funcionará tanto para MacOS como para Win10. Siga las instrucciones de este enlace

Configuración de IDE

Si bien se puede usar cualquier IDE, describimos cómo configurar VS Code

  1. Abra la terminal y escriba brew install --cask visual-studio-code y presione RETORNO.
    1. Si esto no funciona o para Win10, puede descargar VS Code desde el sitio web.
  2. Después de bifurcar este repositorio, puede clonar su repositorio bifurcado en VS Code
  3. VS Code con el mensaje de "clonar un repositorio"
  4. Abra la terminal y navegue al directorio cliente
  5. Escriba npm install para cargar las dependencias
  6. Escribe "gatsby development" para activar la aplicación.
  7. Navegue a localhost: 8000 para ver la aplicación

Extensiones de VS Code recomendadas

  1. Browser Preview
  2. Live Server
  3. Live Share
  4. Live Share Audio
  5. Live Share Extention Pack

Ejecuta el código

  1. Bifurcar este repositorio y crear un clon local. Más información
  2. Si está usando una Mac y Homebrew, abra la terminal y escriba brew update y brew doctor.

Para el desarrollo de front-end, lea el Client README.

Para el desorrollo de back-end, lea el Score README.

Para la implementación de software, lea el Infrastructure README.