# ── Database ────────────────────────────────────────────────
DATABASE_URL=postgresql://localhost:5432/myapp_dev
DB_NAME=myapp_dev
DB_USER=postgres
DB_PASSWORD=dev_password_change_me

# ── Cache ────────────────────────────────────────────────────
REDIS_URL=redis://localhost:6379

# ── Authentication ────────────────────────────────────────────
JWT_SECRET_KEY=super-secret-jwt-key-change-in-prod
JWT_EXPIRES_IN=7d

# ── App ──────────────────────────────────────────────────────
APP_ENV=development
APP_PORT=3000
APP_URL=http://localhost:3000
DEBUG=true
LOG_LEVEL=debug

# Note: SESSION_SECRET, STRIPE_*, SENDGRID_API_KEY, AWS_* are not set
# Run: lazyenv --validate .env .env.example  to see what's missing
