.env.example•935 B
# Database Connection Settings
SQL_SERVER=192.168.4.23
SQL_PORT=1433
SQL_USER=sa
SQL_PASSWORD=password123 # Change this to your actual password
SQL_DATABASE=YourPrimaryDB # Change this to your actual database name
# Security Settings
SQL_ENCRYPT=false
SQL_TRUST_SERVER_CERT=true
# Connection Timeouts
SQL_CONNECTION_TIMEOUT=30000
SQL_REQUEST_TIMEOUT=30000
# Connection Pool Settings
SQL_POOL_MAX=10
SQL_POOL_MIN=0
SQL_POOL_IDLE_TIMEOUT=30000
# Allowed Databases (comma-separated, no spaces around commas)
# If not set or empty, all databases accessible by the SQL_USER are allowed by default by the current config.js implementation.
# Example: SQL_ALLOWED_DATABASES=YourPrimaryDB,AnotherOptionalDB
SQL_ALLOWED_DATABASES=YourPrimaryDB_1,YourPrimaryDB_2 # Change this to your actual allowed databases
# Logging Settings
# Log level for the application logger (e.g., fatal, error, warn, info, debug, trace, silent)
LOG_LEVEL=info