Phase 1: Forward Assist initial build

Multi-tenant AI help desk SaaS for the firearms industry.
Full monorepo: API (Express/Prisma), Worker (BullMQ), Frontend (React/Vite/Tailwind).
PostgreSQL 16 + pgvector, Redis 7, JWT auth, RLS tenant isolation.
Dark Armory theme with tactical branding throughout.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Eric Jungbauer
2026-03-20 01:45:13 +00:00
parent 0bae347e65
commit 05aad75272
56 changed files with 11815 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "forward-assist",
"version": "0.1.0",
"private": true,
"description": "AI-powered help desk for the firearms industry",
"workspaces": [
"packages/shared",
"packages/api",
"packages/worker",
"packages/frontend"
],
"scripts": {
"dev:api": "npm run dev -w packages/api",
"dev:worker": "npm run dev -w packages/worker",
"dev:frontend": "npm run dev -w packages/frontend",
"build": "npm run build -ws",
"db:generate": "npm run prisma:generate -w packages/api",
"db:migrate": "npm run prisma:migrate -w packages/api",
"db:seed": "npm run prisma:seed -w packages/api",
"db:studio": "npx prisma studio --schema packages/api/prisma/schema.prisma",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down"
}
}