This backend provide service on job entity for basic CRUD, it is using webscoket for real time data update to the frontend interface for better user experience.
- Have your docker desktop installed in your machine.
- Clone this repository to your local machine.
- Open your terminal and navigate to the root directory of this repository.
- Run the following command to build the docker image:
docker-compose up --build- After the image is built, you can access the server at http://localhost:3000
- To stop the server, you can run the following command:
docker-compose downThis docker compose file will create three containers, one for nestjs server, one for postgres database and one for adminer to manage the database. To view the database, you can access it http://localhost:8080
$ npm install# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:covNest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
- Author - Kamil Myśliwiec
- Website - https://nestjs.com
- Twitter - @nestframework
Nest is MIT licensed.