15131b72f0
Adds the missing rate_limit table that Better Auth v1.5.6 requires when rateLimit.storage is set to 'database'. Without this table, all auth endpoints return HTTP 500. Also includes GRO-566: SKIP_OOBE env var to bypass setup wizard in dev/test. cc @cpfarhood
37 lines
2.1 KiB
Bash
37 lines
2.1 KiB
Bash
# Groom Book — Environment Variables
|
|
# Copy this file to .env and adjust values for your deployment.
|
|
|
|
# ── Database ──────────────────────────────────────────────────────────────────
|
|
DATABASE_URL=postgres://groombook:groombook@postgres:5432/groombook
|
|
|
|
# ── Authentication ────────────────────────────────────────────────────────────
|
|
# Set AUTH_DISABLED=true to skip OIDC validation (useful for local dev/Docker).
|
|
# In production, configure an Authentik instance and set these values.
|
|
AUTH_DISABLED=false
|
|
OIDC_ISSUER=https://authentik.example.com
|
|
OIDC_AUDIENCE=groombook
|
|
|
|
# ── Setup Wizard ─────────────────────────────────────────────────────────────
|
|
# When SKIP_OOBE=true, the setup wizard is bypassed regardless of whether a
|
|
# super user exists in the database. Useful in dev/test environments where the
|
|
# database has data but the setup wizard would otherwise block access.
|
|
SKIP_OOBE=false
|
|
|
|
# ── API ───────────────────────────────────────────────────────────────────────
|
|
PORT=3000
|
|
CORS_ORIGIN=http://localhost:8080
|
|
|
|
# ── Email Reminders (optional) ────────────────────────────────────────────────
|
|
# Leave SMTP_HOST unset to disable email notifications entirely.
|
|
# When configured, appointment confirmation and reminder emails are sent via SMTP.
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_SECURE=false
|
|
SMTP_USER=user@example.com
|
|
SMTP_PASS=password
|
|
SMTP_FROM="Groom Book <noreply@example.com>"
|
|
|
|
# Hours before appointment to send reminder emails (defaults: 24 and 2)
|
|
REMINDER_HOURS_EARLY=24
|
|
REMINDER_HOURS_LATE=2
|