Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 522 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 522 Bytes

nest-ddd-hexagonal-starter

Description

A hexagonal starter architecture implemented using NestJS and references Get Your Hands Dirty on Clean Architecture.

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Then you can access from http://localhost:3000/accounts/1

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov