A progressive Node.js framework for building efficient and scalable server-side applications.
Backend for the TBEP project. This project is built using the NestJS framework. It is recommended to you docker to manage its following dependencies:
- Neo4j
- Redis
$ pnpm installNote
This project takes environment variables from a .env file. You can create a .env file in the root of the project and edit the environment variables mentioned in the .env.example file.:
cp .env.example .env# development
$ pnpm run start
# watch mode
$ pnpm run start:dev
# production mode
$ pnpm run start:prod# unit tests
$ pnpm run test
# e2e tests
$ pnpm run test:e2e
# test coverage
$ pnpm run test:covCheck out a few resources that may come in handy when working with NestJS:
- Visit the NestJS Documentation to learn more about the framework.
- To dive deeper and get more hands-on experience, check out the official video courses.
- Visualize your application graph and interact with the NestJS application in real-time using NestJS Devtools.