-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
20 lines (17 loc) · 890 Bytes
/
.env.example
File metadata and controls
20 lines (17 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Connection string for the local Postgres where the handbook data lives.
# Homebrew Postgres on macOS uses your OS user with trust auth, so no password
# is needed; adjust for other setups. See CLAUDE.md §1 — this file lives at
# the repo root, not per-package.
DATABASE_URL=postgres://localhost:5432/monmap
# ---- Better Auth ----
# Server-side secret used to sign session tokens. Rotate by replacing
# this value (will invalidate all active sessions). Required.
BETTER_AUTH_SECRET=
# Public origin where the app is reachable. Optional locally; on Vercel
# the lib/auth.ts fallback derives it from VERCEL_URL. Set it explicitly
# in production (custom domain) so OAuth redirects don't bounce through
# the autogenerated *.vercel.app hostname.
# BETTER_AUTH_URL=https://monmap.example.com
# ---- Google OAuth (Better Auth social provider) ----
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=