Dominion/.env.example

22 lines
750 B
Text
Raw Normal View History

2026-08-07 09:48:18 +00:00
# Server Container Configuration (Internal application listener)
2026-08-07 09:28:35 +00:00
PORT=3000
NODE_ENV=production
2026-08-07 08:06:39 +00:00
2026-08-07 09:48:18 +00:00
# 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
2026-08-07 09:38:37 +00:00
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)
2026-08-07 09:28:35 +00:00
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>"