05aad75272
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>
26 lines
581 B
JavaScript
26 lines
581 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'fa-api',
|
|
script: 'npx',
|
|
args: 'tsx packages/api/src/index.ts',
|
|
cwd: '/opt/forward-assist',
|
|
env: { NODE_ENV: 'development' },
|
|
},
|
|
{
|
|
name: 'fa-worker',
|
|
script: 'npx',
|
|
args: 'tsx packages/worker/src/index.ts',
|
|
cwd: '/opt/forward-assist',
|
|
env: { NODE_ENV: 'development' },
|
|
},
|
|
{
|
|
name: 'fa-frontend',
|
|
script: 'npx',
|
|
args: 'vite --host 0.0.0.0',
|
|
cwd: '/opt/forward-assist/packages/frontend',
|
|
env: { NODE_ENV: 'development' },
|
|
},
|
|
],
|
|
};
|