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

https://github.com/vanthang24803/api-nest

Base project for NestJS Project with Docker Postgres Minio Redis
https://github.com/vanthang24803/api-nest

bull docker kafka minio nestjs node postgres redis

Last synced: 2 days ago
JSON representation

Base project for NestJS Project with Docker Postgres Minio Redis

Awesome Lists containing this project

README

          


Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.



NPM Version
Package License
NPM Downloads
CircleCI
Coverage
Discord
Backers on Open Collective
Sponsors on Open Collective
Donate us
Support us
Follow us on Twitter

## Prerequisites

To run the application, you will need to have the following installed on your machine:

- NodeJS >= 20.16.0: [Download and Install NodeJS](https://nodejs.org/en)
- Git: [Download and Install Git](https://git-scm.com/downloads)

## ENV

```bash
$ cd ./scripts
$ node createEnv.js
```

## Project setup

```bash
$ pnpm install
```

## Compile and run the project

```bash
# development
$ pnpm dev

# watch mode
$ pnpm run start:dev

# production mode
$ pnpm run start:prod
```

## Run tests

```bash
# unit tests
$ pnpm run test

# e2e tests
$ pnpm run test:e2e

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