7c0d422228
Ground-up TypeScript rewrite of the Vector hardware parts inventory
system. Ships the full roadmap (Phases 0-8) in one initial commit:
- pnpm + Turbo monorepo: apps/{api,web,e2e}, packages/{db,shared,ui,config}
- Express 5 + Prisma 5 + zod validation + JWT w/ refresh-token rotation
- React 19 + Vite + shadcn/ui + TanStack Query/Table + nuqs URL state
- Repair/RMA, tags, bulk ops, saved views, CSV audit export
- Analytics dashboard on Recharts + EOL tracking
- Signed webhook subscriptions (HMAC-SHA256) with in-process emitter
- Vitest unit tests (shared schemas, api services/helpers) + Playwright skeleton
- Gitea Actions CI (lint, typecheck, test+coverage, build) + Renovate
Deferred follow-ups: Postgres cutover (data-migration script ready),
BullMQ worker for webhook delivery, @react-pdf PDF export, CSV import wizard.
11 lines
400 B
Bash
11 lines
400 B
Bash
NODE_ENV=development
|
|
PORT=3001
|
|
CLIENT_ORIGIN=http://localhost:5173
|
|
|
|
# Provisional local SQLite. Switch to Postgres when Docker is available:
|
|
# DATABASE_URL=postgresql://vector:vector@localhost:5432/vector
|
|
DATABASE_URL=file:../../packages/db/prisma/dev.db
|
|
|
|
# Generate: node -e "console.log(require('crypto').randomBytes(48).toString('hex'))"
|
|
JWT_SECRET=replace-with-at-least-32-char-random-hex-secret
|