20 lines
706 B
Text
20 lines
706 B
Text
# Server Container Configuration (Internal application listener)
|
|
PORT=3000
|
|
NODE_ENV=production
|
|
|
|
# PostgreSQL Database Configuration
|
|
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
|
|
|
|
# SMTP Email Configuration (Environment Variable Overrides)
|
|
# SMTP_HOST=smtp.gmail.com
|
|
# SMTP_PORT=587
|
|
# SMTP_USER=alerts@networkbank.com
|
|
# SMTP_PASS=your_secret_smtp_password
|
|
# SMTP_FROM="Balance Sheet Portal <noreply@networkbank.com>"
|
|
# SMTP_USE_TLS=true
|
|
# SMTP_AUTO_REMINDERS_ENABLED=true
|
|
# SMTP_REMINDER_FREQUENCY_DAYS=7
|