30 lines
832 B
Text
30 lines
832 B
Text
|
|
# GEMINI_API_KEY: Optional for Gemini AI features.
|
||
|
|
GEMINI_API_KEY="MY_GEMINI_API_KEY"
|
||
|
|
|
||
|
|
# APP_URL: Base URL of the application.
|
||
|
|
APP_URL="http://localhost:3000"
|
||
|
|
|
||
|
|
# DATABASE CONFIGURATION (PostgreSQL for Coolify)
|
||
|
|
# You can specify either a full connection string or individual variables
|
||
|
|
DATABASE_URL="postgres://postgres:postgres@localhost:5432/pinnacle_db"
|
||
|
|
POSTGRES_HOST="localhost"
|
||
|
|
POSTGRES_PORT=5432
|
||
|
|
POSTGRES_USER="postgres"
|
||
|
|
POSTGRES_PASSWORD="postgres_password"
|
||
|
|
POSTGRES_DB="pinnacle_db"
|
||
|
|
|
||
|
|
# SERVER & SECURITY
|
||
|
|
PORT=3000
|
||
|
|
NODE_ENV="production"
|
||
|
|
SECRET_KEY="pinnacle_secret_token_change_in_production"
|
||
|
|
|
||
|
|
# SMTP EMAIL CONFIGURATION
|
||
|
|
SMTP_HOST="smtp.mailtrap.io"
|
||
|
|
SMTP_PORT=587
|
||
|
|
SMTP_USER="smtp_username"
|
||
|
|
SMTP_PASS="smtp_password"
|
||
|
|
SMTP_SECURE="false"
|
||
|
|
SMTP_FROM_NAME="Pinnacle Executive Portal"
|
||
|
|
SMTP_FROM_EMAIL="notifications@pinnacle.local"
|
||
|
|
|