# Frontend Environment Variables # These variables are used in both development and production containers # Backend API URL - where the frontend should connect to the backend # Development: http://backend-dev:5000 (container-to-container) # Production: http://backend:5000 (container-to-container) API_URL=http://backend:5000 # Client URL - the URL where users access the frontend # Development: http://localhost:3000 (dev server) # Production: http://localhost (nginx on port 80) CLIENT_URL=http://localhost