Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```