mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-11 08:34:43 -05:00
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
# Base application env
|
|
NODE_ENV="development"
|
|
PORT="3000"
|
|
HOSTNAME="0.0.0.0"
|
|
|
|
# Auth
|
|
# You can generate a new secret on the command line with:
|
|
# openssl rand -base64 32
|
|
AUTH_SECRET="your-auth-secret"
|
|
BETTER_AUTH_URL="http://localhost:3000" # Set to your production URL in production
|
|
|
|
# App URL
|
|
# Used for client-side redirects and base URLs
|
|
NEXT_PUBLIC_APP_URL="http://localhost:3000"
|
|
|
|
# Database (Postgres)
|
|
# These are required for Docker container initialization
|
|
POSTGRES_USER="postgres"
|
|
POSTGRES_PASSWORD="postgres"
|
|
POSTGRES_DB="postgres"
|
|
|
|
# Connect string for the app
|
|
DATABASE_URL="postgres://postgres:postgres@localhost:5432/postgres"
|
|
# 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="your-resend-api-key"
|
|
RESEND_DOMAIN=""
|
|
|
|
# Analytics
|
|
NEXT_PUBLIC_UMAMI_WEBSITE_ID="your-website-id-here"
|
|
NEXT_PUBLIC_UMAMI_SCRIPT_URL="https://analytics.umami.is/script.js"
|
|
# Build tweaks
|
|
# SKIP_ENV_VALIDATION=1
|