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

https://github.com/fanboykun/nest-hello


https://github.com/fanboykun/nest-hello

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

## Requirement
- Node
- Docker
- postgre sql

## Installation

```bash
$ pnpm install
```

## Running the app

```bash
# development
$ pnpm run start

# watch mode
$ pnpm run start:dev

# production mode
$ pnpm run start:prod

# database seed
$ npx prisma db seed
```

## Test

```bash
# unit tests
$ pnpm run test

# e2e tests
$ pnpm run test:e2e

# test coverage
$ pnpm run test:cov
```