a simple ready to use boilerplate using nestjs containing the following features:
- configuration module ready to use
- typeorm preconfigured to use (postgres), you can just change the config and use any db
- authentication using passport-jwt
- swagger documentation
- global validation for all routes
- install node_modules using
yarn
ornpm install
- rename
.env.example
to.env
and fill in the env variables - run the server using
yarn start:dev
ornpm run start:dev