# LuckDB Configuration Example
# This file demonstrates the configuration options available for LuckDB
# Storage path for database files (optional - defaults to ~/.luckdb)
= "./data"
# Enable/disable AES-256 encryption for data persistence
= true
# Password for encryption key derivation (required if encryption_enabled = true)
= "your_secure_password_here"
# Server configuration for client-server mode (optional)
= "127.0.0.1:27017"
# Authentication credentials (optional - server will require auth if provided)
= "admin"
= "secure_admin_password"
# Auto-save interval in seconds (optional - None = manual save only)
# auto_save_interval_seconds = 300
# Maximum number of backup files to keep (optional - default: 5)
= 10