mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-22 01:31:25 -08:00
* First pass of updating documentation for new users Trying to look at this from the perspective of someone new to the project, and create some pathways to make it easier for people to get to the content they are looking for. * Make it clear that docker is doing the setup * Link installation again from the main README * Add some docs about the github actions * Add markdown link check * Move git installation first * Add config for markdown link checker * Fix some links * Correct handling of repo root relative links * Fix broken links in data roadmap * Fix more broken links * Fix more links * Ignore link that's returning a 403 to the checker It actually works if you go in a browser. * Fix another broken link * Ignore more urls that don't work * Update the readme under docs * Add some more dataset links * More strongly call out the quickstart * Try to call out even more the quickstart link * Fix dead links * Add note about initialization time * Remove broken link from spanish install guide These will be updated later with a full translation
2.7 KiB
2.7 KiB
Instalación de la herramienta Justice40
Software requerido
- git, node, and an IDE
Instalar Git
MacOS
- Abra la terminal, escriba
git
y presione RETORNO. - Si las herramientas de desarrollo no están instaladas, una ventana le pedirá que instale las herramientas de desarrollo.
- Abrieron la terminal y escribieron
git --version
y presionaron RETORNO. - 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)
- 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)"
- 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
- Abra la terminal y escriba
brew install --cask visual-studio-code
y presione RETORNO.- Si esto no funciona o para Win10, puede descargar VS Code desde el sitio web.
- Después de bifurcar este repositorio, puede clonar su repositorio bifurcado en VS Code
- VS Code con el mensaje de "clonar un repositorio"
- Abra la terminal y navegue al directorio
cliente
- Escriba
npm install
para cargar las dependencias - Escribe "gatsby development" para activar la aplicación.
- Navegue a
localhost: 8000
para ver la aplicación
Extensiones de VS Code recomendadas
Ejecuta el código
- Bifurcar este repositorio y crear un clon local. Más información
- Si está usando una Mac y Homebrew, abra la terminal y escriba
brew update
ybrew doctor
.
Para el desarrollo de front-end, lea el Client README.
Para el desorrollo de back-end, lea el Data Pipeline README.