This repository has been archived by the owner on Aug 24, 2024. It is now read-only.
-
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.
Merge branch 'main' of github.com:bfukumori/nlw-journey-24-node-trail
- Loading branch information
Showing
1 changed file
with
88 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,88 @@ | ||
# Planner App API | ||
|
||
Backend do Planner, uma aplicação de gerenciamento de viagens. | ||
|
||
## Ferramentas | ||
|
||
- NodeJs | ||
- Fastify | ||
- Vitest | ||
- Prisma | ||
- Zod | ||
- Typescript | ||
- Dayjs | ||
- Nodemailer | ||
- Swagger | ||
|
||
## Aprendizados importantes | ||
|
||
- Criação de uma REST API utilizando Node e Fastify | ||
- Criação de testes unitários utilizando Vitest | ||
- Conexão com envio de emails utilizando Nodemailer | ||
- Conexão com banco de dados utlizando Prisma | ||
- Validações utilizando Zod | ||
- Aplicações de princípios SOLID | ||
- Criação de documentação com Swagger | ||
|
||
## Como usar | ||
|
||
### Pré-requisitos | ||
|
||
- Node.js | ||
- npm | ||
|
||
### Instalação | ||
|
||
1. Clone o repositório: | ||
|
||
```bash | ||
git clone https://github.com/bfukumori/nlw-journey-24-node-trail.git | ||
cd nlw-journey-24-node-trail | ||
``` | ||
|
||
2. Instale as dependências: | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
3. Inicie a aplicação: | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
A API estará disponível em http://localhost:3333. | ||
|
||
#### Comandos | ||
|
||
```bash | ||
# Abre uma aba para manipular o banco de dados em http://localhost:5555 | ||
npx prisma studio | ||
``` | ||
|
||
```bash | ||
# Preenche o banco com dados fictícios | ||
npx prisma db seed | ||
``` | ||
|
||
```bash | ||
# Apaga o banco atual e refaz o seed | ||
npx prisma migrate reset | ||
``` | ||
|
||
```bash | ||
# Roda os testes unitários | ||
npm run test | ||
``` | ||
|
||
```bash | ||
# Gera o coverage report dos testes | ||
npm run coverage | ||
``` | ||
|
||
#### REST API | ||
O arquivo **client.http** possui as chamadas para os endpoint, caso você tenha a extensão do [REST Client instalada](https://marketplace.visualstudio.com/items?itemName=humao.rest-client). | ||
|
||
## Documentação | ||
A documentação foi gerada com o Swagger e se encontra em http://localhost:3333/docs. |