Environment Variables
Both applications manage their own environment variables through .env files.
Backend
The backend loads configuration from backend/.env. Copy backend/.env.example to get started.
TODO
Document the required and optional environment variables for the backend, grouped by category (database, Redis, auth, external services, etc.).
Frontend
The frontend uses multiple environment files:
| File | Purpose |
|---|---|
frontend/.env | Default values |
frontend/.env.production | Production overrides |
frontend/.env.test | Test environment overrides |
TODO
Document the frontend environment variables (Vite exposes variables prefixed with VITE_).
