- Add environment configuration with type-safe config.ts - Implement navigation guards (requireAuth, requireGuest, requireStarter) - Update router to match sitePlan routes and layouts - Create placeholder pages for all sitePlan routes - Update auth store User interface for OAuth flow - Add phase plan tracking for F0 Phase F0 progress: 4/8 tasks complete Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
395 B
Plaintext
12 lines
395 B
Plaintext
# Development environment configuration
|
|
# These values are used when running `npm run dev`
|
|
|
|
# Backend API base URL (FastAPI server)
|
|
VITE_API_BASE_URL=http://localhost:8000
|
|
|
|
# WebSocket URL (Socket.IO server - same as API in development)
|
|
VITE_WS_URL=http://localhost:8000
|
|
|
|
# OAuth redirect URI (must match OAuth provider configuration)
|
|
VITE_OAUTH_REDIRECT_URI=http://localhost:5173/auth/callback
|