-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: adicionar README com instruções para rodar o projeto localmente
- Loading branch information
1 parent
bd0eb0c
commit 103dfc4
Showing
1 changed file
with
36 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Line Follower Dashboard | ||
|
||
Dashboard para configuração, monitoramento e controle dos seguidores de linha da Tamandutech. | ||
|
||
## Rodando localmente | ||
|
||
Para testar e trabalhar no aplicativo utilizando a sua máquina | ||
|
||
- siga o [tutorial](https://reactnative.dev/docs/environment-setup?guide=native) da documentação do React Native para configuração do ambiente para desenvolvimento mobile; | ||
- instale as dependências do projeto | ||
|
||
```bash | ||
npm i | ||
``` | ||
|
||
- para rodar o projeto em um emulador, execute | ||
|
||
```bash | ||
npm run android | ||
``` | ||
|
||
## Testes | ||
|
||
Este projeto utiliza o [Jest](https://jestjs.io/pt-BR/) como framework para automatização de testes. Para rodar os testes do projeto, execute | ||
|
||
```bash | ||
npm run test:unit:ci | ||
``` | ||
|
||
ou | ||
|
||
```bash | ||
npm run test:unit | ||
``` | ||
|
||
para re-executar conforme os arquivos são alterados. |