Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1014 Bytes

README.md

File metadata and controls

60 lines (40 loc) · 1014 Bytes

Description

CQRS + Event Sourcing using redis as a read database and mongo as a event source database. All developed on top of NestJS using typescript.

If your looking for a GraphQL impl instead of an API Rest check this repository.

Installation

$ npm install

Configuration

$ cp .env.example .env

Edit the file with your config data.

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

Where to start

You can starts by checking 'src/users/users.controller.ts' and 'src/auth/auth.controller.ts'.

Reconstructing the view db

Just run

npm run reconstruct-view-db

Stay in touch