Jesús Pérez a395bd972f
Some checks failed
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
mdBook Build & Deploy / Build mdBook (push) Has been cancelled
Nickel Type Check / Nickel Type Checking (push) Has been cancelled
mdBook Build & Deploy / Documentation Quality Check (push) Has been cancelled
mdBook Build & Deploy / Deploy to GitHub Pages (push) Has been cancelled
mdBook Build & Deploy / Notification (push) Has been cancelled
chore: add cd/ci ops
2026-01-12 03:36:55 +00:00

49 lines
892 B
Plaintext

# Platform Default Values
{
# Server defaults
server = {
host = "0.0.0.0",
port = 8080,
workers = 4,
request_timeout = 30000,
keep_alive = 75,
max_connections = 1000,
graceful_shutdown = true,
shutdown_timeout = 30,
},
# Database defaults
database = {
url = "ws://localhost:8000",
username = "root",
password = "",
database = "vapora",
pool_size = 20,
connection_timeout = 30,
},
# Monitoring defaults
monitoring = {
prometheus_enabled = false,
log_level = "info",
tracing_enabled = false,
metrics_path = "/metrics",
},
# Security defaults
security = {
tls_enabled = false,
auth_enabled = true,
audit_enabled = false,
},
# Storage defaults
storage = {
base_path = "/var/lib/vapora",
backend = "filesystem",
backup_enabled = true,
backup_interval = 24,
},
}