Preserves the working F3 Phaser demo implementation before resetting the main frontend/ directory for a fresh start. The POC demonstrates: - Vue 3 + Phaser 3 integration - Real card rendering with images - Vue-Phaser state sync via gameBridge - Card interactions and damage counters To restore: copy .claude/frontend-poc/ back to frontend/ and run npm install
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
|