# Copy this file to .env and fill in real values. # Never commit .env to version control. # ── Environment ─────────────────────────────────────────────────────────────── APP_ENV=development # development | staging | production # ── Server ──────────────────────────────────────────────────────────────────── APP__SERVER__HOST=0.0.0.0 APP__SERVER__PORT=8080 # ── Logging ─────────────────────────────────────────────────────────────────── # Any valid tracing EnvFilter directive. RUST_LOG=axum_api_template=debug,tower_http=debug # ── Database ────────────────────────────────────────────────────────────────── APP__DATABASE__URL=postgres://user:password@localhost:5432/axum_api # ── Auth ────────────────────────────────────────────────────────────────────── APP__AUTH__JWT_SECRET=change-me-to-a-long-random-string APP__AUTH__TOKEN_EXPIRY_SECONDS=3600