diff --git a/docs/docs/nestjs-recipes/01-nestjs.md b/docs/docs/nestjs-recipes/01-nestjs.md new file mode 100644 index 0000000..cdd74ea --- /dev/null +++ b/docs/docs/nestjs-recipes/01-nestjs.md @@ -0,0 +1,10 @@ +# NestJS Intro + Setup + + +## Setup + +To create new NestJS app inside monorepo we can call the `new` command. Do not forget to add `--strict` flag. + +`pnpx @nestjs/cli new apps/new-api --strict --skip-git --package-manager pnpm` + + diff --git a/docs/docs/nestjs-recipes/02-database.md b/docs/docs/nestjs-recipes/02-database.md new file mode 100644 index 0000000..9103af9 --- /dev/null +++ b/docs/docs/nestjs-recipes/02-database.md @@ -0,0 +1,8 @@ +# Database + +## Postgres + + +## Drizzle ORM + +https://orm.drizzle.team/docs/overview diff --git a/docs/docs/nestjs-recipes/03-project-structure.md b/docs/docs/nestjs-recipes/03-project-structure.md new file mode 100644 index 0000000..782fdf4 --- /dev/null +++ b/docs/docs/nestjs-recipes/03-project-structure.md @@ -0,0 +1 @@ +# Project Structure diff --git a/docs/docs/nestjs-recipes/04-configuration.md b/docs/docs/nestjs-recipes/04-configuration.md new file mode 100644 index 0000000..a025a48 --- /dev/null +++ b/docs/docs/nestjs-recipes/04-configuration.md @@ -0,0 +1 @@ +# Configuration diff --git a/docs/docs/nestjs-recipes/testing/01-factories.md b/docs/docs/nestjs-recipes/testing/01-factories.md new file mode 100644 index 0000000..d60624a --- /dev/null +++ b/docs/docs/nestjs-recipes/testing/01-factories.md @@ -0,0 +1 @@ +# Factories