Files
metabuilder/dbal/production/.env.example

29 lines
722 B
Plaintext

# DBAL Daemon Environment Variables
# Copy this file to .env and customize for your environment
# Server Configuration
DBAL_BIND_ADDRESS=127.0.0.1
DBAL_PORT=8080
DBAL_MODE=production
# Configuration File
DBAL_CONFIG=config.yaml
# Daemon Mode
# Set to "true" to run in daemon mode (background)
# Set to "false" for interactive mode (default)
DBAL_DAEMON=false
# Logging Configuration
# Levels: trace, debug, info, warn, error, critical
DBAL_LOG_LEVEL=info
# Database Configuration (future use)
# DBAL_DB_PATH=/data/dbal.db
# DBAL_DB_POOL_SIZE=10
# Multi-Tenant Configuration (future use)
# DBAL_DEFAULT_QUOTA_BLOB_MB=1024
# DBAL_DEFAULT_QUOTA_RECORDS=100000
# DBAL_DEFAULT_QUOTA_KV_MB=500