- Add /dev-server skill with preflight checks for environment, deps, ports, and services before starting frontend/backend - Add /frontend-phase skill for tracking implementation phases - Register skills in .claude/settings.json - Update .env.development ports (8001 for API, 3001 for frontend) 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:8001
|
|
|
|
# WebSocket URL (Socket.IO server - same as API in development)
|
|
VITE_WS_URL=http://localhost:8001
|
|
|
|
# OAuth redirect URI (must match OAuth provider configuration)
|
|
VITE_OAUTH_REDIRECT_URI=http://localhost:3001/auth/callback
|