27 lines
1.4 KiB
Bash
27 lines
1.4 KiB
Bash
# ============================================================
|
|
# MulliganMates — Environment Variables
|
|
# Copy to .env and fill in all values before starting.
|
|
# ============================================================
|
|
|
|
# ── Application ─────────────────────────────────────────────
|
|
APP_DOMAIN=golf.example.com
|
|
SITE_URL=https://golf.example.com
|
|
ADMIN_EMAIL=admin@example.com
|
|
|
|
# ── Database ─────────────────────────────────────────────────
|
|
# Generate: node -e "console.log(require('crypto').randomBytes(24).toString('hex'))"
|
|
POSTGRES_PASSWORD=your-strong-postgres-password
|
|
POSTGRES_DB=postgres
|
|
|
|
# ── Auth (better-auth) ───────────────────────────────────────
|
|
# Generate: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
|
|
BETTER_AUTH_SECRET=your-better-auth-secret-at-least-32-chars
|
|
|
|
# ── Email ────────────────────────────────────────────────────
|
|
# Set to your SMTP provider (e.g. smtp.resend.com, smtp.mailgun.org)
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your-smtp-user
|
|
SMTP_PASS=your-smtp-password
|
|
SMTP_SENDER_NAME=MulliganMates
|