21 lines
750 B
Text
21 lines
750 B
Text
# Server Container Configuration (Internal application listener)
|
|
PORT=3000
|
|
NODE_ENV=production
|
|
|
|
# Host Port Mappings for Docker / Coolify (Prevents conflict if host ports 3000 or 5432 are occupied)
|
|
HOST_PORT=8080
|
|
POSTGRES_HOST_PORT=5433
|
|
|
|
# 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
|
|
|
|
# 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>"
|