42 lines
811 B
TOML
Raw Normal View History

2025-07-07 23:13:01 +01:00
# 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"]