- 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>
42 lines
813 B
TOML
42 lines
813 B
TOML
# Development Environment Configuration
|
|
# Settings optimized for local development and debugging
|
|
|
|
[server]
|
|
environment = "development"
|
|
log_level = "debug"
|
|
protocol = "http"
|
|
host = "127.0.0.1"
|
|
port = 3030
|
|
|
|
[app]
|
|
debug = true
|
|
enable_metrics = true
|
|
enable_health_check = true
|
|
enable_compression = false
|
|
|
|
[cors]
|
|
allowed_origins = ["http://localhost:3030", "http://127.0.0.1:3030", "http://localhost:3000"]
|
|
|
|
[session]
|
|
secret = "dev-session-secret-change-in-production"
|
|
cookie_secure = false
|
|
|
|
[database]
|
|
url = "sqlite//:dev_database.db"
|
|
max_connections = 5
|
|
|
|
[logging]
|
|
level = "debug"
|
|
file_path = "logs/dev_app.log"
|
|
enable_console = true
|
|
enable_file = true
|
|
|
|
[features]
|
|
auth = true
|
|
tls = false
|
|
content_db = true
|
|
two_factor_auth = false
|
|
|
|
[build]
|
|
features = ["auth", "content-db", "crypto", "email", "metrics", "examples"]
|