# <%= props.name %>

Fullstack workspace generated by `lt fullstack init --next`. The API is
the next-generation [`nest-base`](https://github.com/lenneTech/nest-base)
template (Bun + Prisma + Postgres + Better-Auth + REST). The app is a
Nuxt 4 frontend.

This root README intentionally stays minimal — each subproject has its
own `README.md` / `CLAUDE.md` / `.claude/` with the detail you actually
need while working in it.

## Layout

- [`projects/api/`](./projects/api/) — NestJS backend (Bun · Prisma 7 · Postgres 18 · Better-Auth)
- [`projects/app/`](./projects/app/) — Nuxt 4 frontend
- [`.claude/QUICKSTART.md`](./.claude/QUICKSTART.md) — agent routing card

## Quick start

### API (Bun + Prisma + Postgres)

```bash
cd projects/api
bun install
bun run setup            # generate .env with strong random secrets
docker compose up -d postgres
bun run prepare:schema   # concatenate active feature schemas
bun run prisma:generate
bun run prisma:migrate
bun run dev              # boots Postgres if needed, opens the Dev Hub
```

The Dev Hub is at `http://localhost:3000/dev`. See
[`projects/api/README.md`](./projects/api/README.md) for the full tour.

### Frontend (Nuxt 4)

```bash
cd projects/app
pnpm install
pnpm dev
```

See [`projects/app/README.md`](./projects/app/README.md).

## License

MIT
