Jesús Pérez 7cab57b645
Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
chore: update layout and files
2026-02-08 20:18:46 +00:00

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"]