Making this to practice my NestJS.
Started from the NestJS TypeScript starter repository in October 2024.
- NestJS as our backend framework. See NestJS docs here. Check out NestJS Devtools here.
- pnpm as our package manager.
- prettier for code formatting.
- TypeScript for type safety.
- TypeORM is the standard ORM for NestJS.
- MySQL as our database.
Soon:
Install dependencies:
$ pnpm install
Setup your environmental variables:
$ 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:cov