mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-13 01:24:44 -05:00
28 lines
626 B
Plaintext
28 lines
626 B
Plaintext
# Base application env (example)
|
|
NODE_ENV=production
|
|
PORT=3000
|
|
HOSTNAME=0.0.0.0
|
|
|
|
# NextAuth
|
|
AUTH_SECRET=replace-with-strong-secret
|
|
|
|
# Database (Postgres)
|
|
# These are required for Docker container initialization
|
|
POSTGRES_USER=beenvoice
|
|
POSTGRES_PASSWORD=beenvoice
|
|
POSTGRES_DB=beenvoice
|
|
|
|
# Connect string for the app
|
|
DATABASE_URL=postgres://beenvoice:beenvoice@db:5432/beenvoice
|
|
# Disable SSL for Docker local Postgres; set to false or remove for managed Postgres
|
|
DB_DISABLE_SSL=true
|
|
|
|
# Email (Resend). Replace with real keys in production
|
|
RESEND_API_KEY=replace-or-remove
|
|
RESEND_DOMAIN=
|
|
|
|
# Build tweaks
|
|
SKIP_ENV_VALIDATION=1
|
|
|
|
|