🚀 Phase 2 Complete - React 19 Foundation - React upgraded: 18.2.0 → 19.0.0 ✅ - MUI upgraded: 5 → 6 ✅ - React Router upgraded: 6 → 7 ✅ - All packages updated and working ✅ - Production build: 995KB bundle ✅ - All containers working ✅ Ready for Phase 3: React Compiler integration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
# Environment
|
|
NODE_ENV=development
|
|
|
|
# Backend Server
|
|
PORT=3001
|
|
|
|
# Database
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=motovaultpro
|
|
DB_USER=postgres
|
|
DB_PASSWORD=localdev123
|
|
|
|
# Redis
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
|
|
# MinIO
|
|
MINIO_ENDPOINT=localhost
|
|
MINIO_PORT=9000
|
|
MINIO_ACCESS_KEY=minioadmin
|
|
MINIO_SECRET_KEY=minioadmin123
|
|
MINIO_BUCKET=motovaultpro
|
|
|
|
# Auth0 Configuration
|
|
VITE_AUTH0_DOMAIN=motovaultpro.us.auth0.com
|
|
VITE_AUTH0_CLIENT_ID=yspR8zdnSxmV8wFIghHynQ08iXAPoQJ3
|
|
VITE_AUTH0_AUDIENCE=https://api.motovaultpro.com
|
|
|
|
# External APIs (UPDATE THESE)
|
|
GOOGLE_MAPS_API_KEY=your-google-maps-key
|
|
VPIC_API_URL=https://vpic.nhtsa.dot.gov/api/vehicles
|
|
|
|
# Docker User/Group IDs (to avoid permission issues)
|
|
USER_ID=501
|
|
GROUP_ID=20
|
|
|
|
# Frontend (for containerized development)
|
|
VITE_API_BASE_URL=http://backend:3001/api
|
|
VITE_AUTH0_DOMAIN=your-domain.auth0.com
|
|
VITE_AUTH0_CLIENT_ID=your-client-id
|
|
VITE_AUTH0_AUDIENCE=https://api.motovaultpro.com
|
|
|
|
# External Server Deployment
|
|
# Update these when deploying to external server with custom domain
|
|
FRONTEND_DOMAIN=motovaultpro.com
|
|
FRONTEND_PORT=3000
|
|
# For API calls from external domain, update backend CORS settings |