0 - Estrutura

Estrutura inicial do projeto

├── .github
├── .vscode
├── src
│   ├── @types
│   └── config
│   └── database
│   │   └── migrations
│   │   │   └── [...]
│   │   └── index.ts
│   └── errors
│   │   └── [...]
│   └── middlewares
│   │   └── [...]
│   └── models
│   │   └── [...]
│   └── repositories
│   │   └── [...]
│   └── routes
│   │   └── [...]
│   │   └── index.ts
│   └── services
│   │   └── [...]
│   └── server.ts
├── tmp
│   ├── uploads
│   ├── .gitkeep
├── editorconfig
├── .eslintignore
├── .eslintrc.json
├── .gitignore
├── ormconfig.json
├── package-lock.json
├── package.json
├── prettier.config.js
├── tsconfig.json
└── yarn.lock

Last updated