MoneyMatcher Quick Setup
1. Create .env file
Option A - Run the setup script (easiest):
.\setup-env.bat
Option B - Create manually:
GEMINI_API_KEY=AIzaSyA2fIcLThdyMBKJX0eGUAHLZE8e-S8jdRo
GOOGLE_MAPS_API_KEY=AIzaSyCvvwpvGcl0TT9CSPCcPWv2tgBGJfo72uI
VITE_CORTEX_API_URL=http://localhost:8003
VITE_ENABLE_CORTEX=true
2. Install dependencies
pnpm install
3. Start the app
pnpm dev
App runs at: http://localhost:3000
4. (Optional) Start Crella Cortex
For advanced AI features (lender matching, county records):
cd ..\cortex\backend
python -m uvicorn main:app --reload --port 8003
Dev Shortcuts
Access pages directly via URL params:
http://localhost:3000/?dev=results- Jump to results pagehttp://localhost:3000/?dev=recon- Jump to 3D scannerhttp://localhost:3000/?dev=marketplace- Property marketplacehttp://localhost:3000/?dev=lender-swipe- Lender swipe viewhttp://localhost:3000/?dev=exit- Exit strategy analyzer
Build for Production
pnpm build
pnpm preview
Ports Reference
| Service | Port | Description |
|---|---|---|
| MoneyMatcher | 3000 | This app |
| Crella Cortex | 8003 | AI backend (7 LLMs) |
| Crella Backend | 8002 | Main backend (optional) |