# Mimer SQL Database Configuration
DB_DSN=mimerdb
DB_USER=MIMER_STORE
DB_PASSWORD=GoodiesRUs

# Host settings
# For Docker, use 'host.docker.internal' to connect to the db on the host machine
DB_HOST=mimersql
DB_PORT=1360
DB_PROTOCOL=tcp

# Connection pool configuration (optional)
# All pool settings are optional - if not specified, MimerPool will use its own defaults
# Initial number of idle connections in the pool.
DB_POOL_INITIAL_CON=0
# Maximum number of unused connections in the pool.
DB_POOL_MAX_UNUSED=0
# Maximum number of connections allowed.
DB_POOL_MAX_CON=2
# Determines behavior when exceeding the maximum number of connections.
# If true, block and wait for a connection to become available
# If false, raise an error when maxconnections is exceeded
DB_POOL_BLOCK=true
# Deep health check - validates connection health before getting from pool
# Setting to true is slower but guarantees the connection is healthy
DB_POOL_DEEP_HEALTH_CHECK=false 

# Logging configuration
# Set the logging level for the MCP server
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
MCP_LOG_LEVEL=INFO
