Dominion/.env.example

17 lines
599 B
Text

# Server Configuration
PORT=3000
NODE_ENV=production
# PostgreSQL Connection String (Coolify / Managed Postgres / Docker)
DATABASE_URL=postgresql://postgres:postgres_secure_pass_2026@postgres:5432/balance_sheet_db
POSTGRES_PASSWORD=postgres_secure_pass_2026
# Fallback File Storage Path (Used if DATABASE_URL is omitted or offline)
DATA_PATH=/app/data/portal-data.json
# Optional SMTP Email Configuration (If using real SMTP server)
# SMTP_HOST=smtp.gmail.com
# SMTP_PORT=587
# SMTP_USER=your-email@domain.com
# SMTP_PASS=your-app-password
# SMTP_FROM="Balance Sheet Portal <noreply@domain.com>"