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

https://github.com/devcrossnet/nest-starter

WIP all you need to build a backend modular monolith
https://github.com/devcrossnet/nest-starter

Last synced: 10 months ago
JSON representation

WIP all you need to build a backend modular monolith

Awesome Lists containing this project

README

          

## nest-starter

> All you need to build a modular backend monolith

## Installation

1. Install dependencies with `npm install`.

1. Install PostgreSQL. There are many ways on how to do it. We can recommend https://postgresapp.com for the Mac.
Other ways, such as Homebrew, are described here: https://www.postgresql.org/download/macosx/.

1. Copy the `.env-example` file and name it `.env`.

## Running the app

App is running on [localhost:8080](http://localhost/8080)

```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
```