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
- Host: GitHub
- URL: https://github.com/devcrossnet/nest-starter
- Owner: devCrossNet
- License: mit
- Created: 2021-02-13T10:53:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-13T23:42:16.000Z (almost 5 years ago)
- Last Synced: 2025-02-19T22:42:29.627Z (10 months ago)
- Language: TypeScript
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```