Multi-tenant financial management platform for homeowner associations featuring: - NestJS backend with 16 modules (auth, accounts, transactions, budgets, units, invoices, payments, vendors, reserves, investments, capital projects, reports) - React + Mantine frontend with dashboard, CRUD pages, and financial reports - Schema-per-tenant PostgreSQL isolation with JWT-based tenant resolution - Docker Compose infrastructure (nginx, backend, frontend, postgres, redis) - Comprehensive seed data for Sunrise Valley HOA demo - 39 API endpoints with Swagger documentation - Double-entry bookkeeping with journal entries - Budget vs actual reporting and Sankey cash flow visualization Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
236 B
Plaintext
8 lines
236 B
Plaintext
POSTGRES_USER=hoafinance
|
|
POSTGRES_PASSWORD=change_me
|
|
POSTGRES_DB=hoafinance
|
|
DATABASE_URL=postgresql://hoafinance:change_me@postgres:5432/hoafinance
|
|
REDIS_URL=redis://redis:6379
|
|
JWT_SECRET=change_me_to_random_string
|
|
NODE_ENV=development
|