https://github.com/irfani92/todolist-restapi-nestjs
To do list rest api with nest js
https://github.com/irfani92/todolist-restapi-nestjs
nestjs-backend rest-api
Last synced: 8 months ago
JSON representation
To do list rest api with nest js
- Host: GitHub
- URL: https://github.com/irfani92/todolist-restapi-nestjs
- Owner: irfani92
- Created: 2024-06-21T03:53:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-22T12:52:51.000Z (about 2 years ago)
- Last Synced: 2024-12-27T12:27:07.316Z (over 1 year ago)
- Topics: nestjs-backend, rest-api
- Language: TypeScript
- Homepage:
- Size: 3.44 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
To do list with Rest API with simple functional such as :
- CRUD
- Send Email
- JWT Auth
- Relationanl
- Prisma Migration
- Simple Unit Testing
- Compodoc
- Swagger
- Docker
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
```
## Test
```bash
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
# run smtp local
$ docker run --rm -p 25:25 -p 8025:80 rnwood/smtp4dev
# run compodoc
npx @compodoc/compodoc -p tsconfig.json -s
```