... | ... | @@ -30,7 +30,26 @@ Aqui serão encontradas as instruções de configuração de ambos ambientes de |
|
|
|
|
|
#### Instalação
|
|
|
|
|
|
TBD
|
|
|
Instalando o NVM:
|
|
|
|
|
|
```sh
|
|
|
# instala de nvm
|
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
|
|
|
```
|
|
|
|
|
|
Instalando o node 18:
|
|
|
|
|
|
```sh
|
|
|
# instala node 18
|
|
|
nvm install 18
|
|
|
```
|
|
|
|
|
|
Instalando o yarn:
|
|
|
|
|
|
```sh
|
|
|
#instala o yarn
|
|
|
npm i -g yarn
|
|
|
```
|
|
|
|
|
|
#### Verificação
|
|
|
|
... | ... | |