Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcosoliveira91/nestjs-boilerplate
A Node.js boilerplate leveraging NestJS framework with DDD, CQRS, and Hexagonal Architecture principles.
https://github.com/marcosoliveira91/nestjs-boilerplate
backend boilerplate cqrs ddd ddd-cqrs domain-driven-design hexagonal-architecture mysql nestjs nodejs openapi-spec typescript
Last synced: 2 months ago
JSON representation
A Node.js boilerplate leveraging NestJS framework with DDD, CQRS, and Hexagonal Architecture principles.
- Host: GitHub
- URL: https://github.com/marcosoliveira91/nestjs-boilerplate
- Owner: marcosoliveira91
- Created: 2024-06-18T17:24:55.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-26T16:06:19.000Z (6 months ago)
- Last Synced: 2024-10-01T06:44:07.624Z (3 months ago)
- Topics: backend, boilerplate, cqrs, ddd, ddd-cqrs, domain-driven-design, hexagonal-architecture, mysql, nestjs, nodejs, openapi-spec, typescript
- Language: TypeScript
- Homepage:
- Size: 224 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
## Installation
```bash
$ docker compose -f ./docker/docker-compose.yml up -d
$ pnpm install
```## Running the app
```bash
# development
$ pnpm run start# watch mode
$ pnpm run start:dev# production mode
$ pnpm run start:prod
```## Test
```bash
# unit tests
$ pnpm run test# e2e tests
$ pnpm run test:e2e# test coverage
$ pnpm run test:cov
```