https://github.com/roluochke/rentbnb
A microservice architecture application for making reservations
https://github.com/roluochke/rentbnb
docker kubernetes mongodb nestjs nodejs rest-api
Last synced: 3 months ago
JSON representation
A microservice architecture application for making reservations
- Host: GitHub
- URL: https://github.com/roluochke/rentbnb
- Owner: rOluochKe
- Created: 2023-09-19T13:32:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-22T09:30:53.000Z (almost 3 years ago)
- Last Synced: 2025-02-05T21:00:57.405Z (over 1 year ago)
- Topics: docker, kubernetes, mongodb, nestjs, nodejs, rest-api
- Language: TypeScript
- Homepage:
- Size: 158 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RentBnB
A microservice application built with NestJS.
## Installation
```bash
$ npm install
```
## Running the app
```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
```