This is a template project for building Nest applications with Fastify. It includes a pre-configured development environment, as well as several useful scripts for linting and spell checking your code.
$ yarn install# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:covThis project uses conventional commits. Reference: https://www.conventionalcommits.org/en/v1.0.0/
- Create a new branch for every new feature.
- Compile and run the application.
- Run the tests.
- Commit your changes using
yarn czcommand. - Push your changes.
- Open a new pull request.