https://github.com/amgdhussein/brilliant
Nest Project Demo, for learning backend fundamentals.
https://github.com/amgdhussein/brilliant
clean-code dto dto-entity-mapper eslint eslint-rules firebase firestore nestjs nestjs-backend oop passport-jwt prettier swagger swagger-documentation typescript
Last synced: 2 months ago
JSON representation
Nest Project Demo, for learning backend fundamentals.
- Host: GitHub
- URL: https://github.com/amgdhussein/brilliant
- Owner: amgdHussein
- Created: 2024-01-28T10:36:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-25T09:23:03.000Z (about 2 years ago)
- Last Synced: 2025-01-18T13:24:29.364Z (over 1 year ago)
- Topics: clean-code, dto, dto-entity-mapper, eslint, eslint-rules, firebase, firestore, nestjs, nestjs-backend, oop, passport-jwt, prettier, swagger, swagger-documentation, typescript
- Language: TypeScript
- Homepage:
- Size: 250 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Brilliant
## Description
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository for **FMS** backend project.
## Installation
```bash
$ yarn install
```
## Running the app
```bash
# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod
```
## Test
```bash
# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov
```
## License
Nest is [MIT licensed](LICENSE).
## Source Folder Structure
```
src
│
├── core
│ │
│ ├── constants
│ ├── exceptions
│ ├── decorators
│ ├── auth
│ ├── providers
│ ├── guards
│ ├── utils
│ ├── interceptors
│ └── filters
│ ├── http exceptions
│ └── ...
│
└── modules
│
├── user
│ │
│ ├── entities: schema (interface)
│ ├── dtos/ presenters/ view-models
│ ├── services: business logic & external apis integration
│ └── controllers/ route-handler
│
├── article
│
└── ...
```