Full OAuth (social login) for NestJS via Passport. `install` lays down an extensible OAuthModule that issues a JWT on success; then add providers on demand with `add-google`, `add-github`, `add-discord` — each is independent and composes into the same module.
Creates a docker-compose.yml and lets you add common dev services on demand (postgres, redis, mongo, rabbitmq, mailpit). Each command injects the service + named volume and auto-fills .env / .env.example with the matching connection variables.
Adds JWT authentication to a NestJS project: AuthModule, JwtAuthGuard, @CurrentUser() decorator, login + register endpoints. Detects Drizzle or Prisma and wires up user storage automatically.
Adds React Router v7 to a React project — sets up BrowserRouter, rewrites App.tsx with Routes, and provides a page generator that wires routes automatically.
Adds a multi-stage Dockerfile, a docker-compose.yml (app + PostgreSQL) and a .dockerignore so a NestJS project is ready to build and deploy as a container.
Adds Prisma 7 (PostgreSQL) to a NestJS project: new `prisma-client` generator (CommonJS, generated under src/) plus the @prisma/adapter-pg driver adapter, and a resource generator that replaces `nest g res` — no tests, real DB queries.
Adds Prisma 7 (PostgreSQL) to a NestJS project: new `prisma-client` generator (CommonJS, generated under src/) plus the @prisma/adapter-pg driver adapter, and a resource generator that replaces `nest g res` — no tests, real DB queries.