Rustelo/config/base/database.toml
Jesús Pérex 2f0f807331 feat: add dark mode functionality and improve navigation system
- Add complete dark mode system with theme context and toggle
- Implement dark mode toggle component in navigation menu
- Add client-side routing with SSR-safe signal handling
- Fix language selector styling for better dark mode compatibility
- Add documentation system with mdBook integration
- Improve navigation menu with proper external/internal link handling
- Add comprehensive project documentation and configuration
- Enhance theme system with localStorage persistence
- Fix arena panic issues during server-side rendering
- Add proper TypeScript configuration and build optimizations

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-11 20:53:20 +01:00

30 lines
676 B
TOML

# Base Database Configuration
# Database connection and pool settings that apply across environments
[database]
# Default database URL - will be overridden per environment
url = "sqlite//:database.db"
max_connections = 10
min_connections = 1
connect_timeout = 30
idle_timeout = 600
max_lifetime = 1800
# Database migration settings
[database.migrations]
auto_migrate = false
migration_dir = "migrations"
create_db_if_missing = true
# Connection pool health check
[database.health]
enable_ping = true
ping_timeout = 5
max_retries = 3
# Query logging and performance
[database.logging]
log_queries = false
log_slow_queries = true
slow_query_threshold = 1000 # milliseconds