# Copy to .env for `docker compose up`. # Local dev (cargo run / npm run dev) reads backend/.env if present. POSTGRES_USER=mangalord POSTGRES_PASSWORD=mangalord POSTGRES_DB=mangalord DATABASE_URL=postgres://mangalord:mangalord@postgres:5432/mangalord BIND_ADDRESS=0.0.0.0:8080 STORAGE_DIR=/var/lib/mangalord/storage RUST_LOG=info,mangalord=debug # Public base URL the frontend uses to reach the API from the browser. # In docker compose this is exposed on the host. PUBLIC_API_BASE=http://localhost:8080/api