Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bernardosemioficial/todolist-backend
Backend responsável por gerenciar a criação, edição, deleção de tarefas
https://github.com/bernardosemioficial/todolist-backend
Last synced: 2 days ago
JSON representation
Backend responsável por gerenciar a criação, edição, deleção de tarefas
- Host: GitHub
- URL: https://github.com/bernardosemioficial/todolist-backend
- Owner: BernardoSemiOficial
- Created: 2024-10-17T16:46:23.000Z (29 days ago)
- Default Branch: main
- Last Pushed: 2024-10-17T21:18:06.000Z (29 days ago)
- Last Synced: 2024-10-21T04:02:44.092Z (25 days ago)
- Language: TypeScript
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todolist
Projeto no qual serve dados através de API REST. O projeto cuida de listar, criar, editar e excluir tarefas.
## Tecnologias
- NextJS
- TypeScript
- Prisma## Rodar o projeto localmente
**instalar as dependências do projeto**
```bash
$ npm install
```**executar o projeto em diferentes ambientes**
```bash
# development
$ npm run start# watch mode
$ npm run start:dev# production mode
$ npm run start:prod
```**rodar testes unitários e de integração**
```bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
```