luckdb 0.1.4

A Lightweight JSON Document Database in Rust
Documentation
# LuckDB Configuration Example

# This file demonstrates the configuration options available for LuckDB



# Storage path for database files (optional - defaults to ~/.luckdb)

storage_path = "./data"



# Enable/disable AES-256 encryption for data persistence

encryption_enabled = true



# Password for encryption key derivation (required if encryption_enabled = true)

encryption_password = "your_secure_password_here"



# Server configuration for client-server mode (optional)

server_address = "127.0.0.1:27017"



# Authentication credentials (optional - server will require auth if provided)

auth_username = "admin"

auth_password = "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)

max_backup_files = 10