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
25 lines
886 B
XML
25 lines
886 B
XML
# Example: VAPORA Solo Deployment Configuration (Development Mode)
|
|
#
|
|
# This is a reference Nickel configuration showing typical settings for solo development.
|
|
# Copy this file to provisioning/config/runtime/vapora.solo.ncl and customize as needed.
|
|
#
|
|
# Solo mode (2 CPU, 2GB RAM):
|
|
# - Local development
|
|
# - Testing and validation
|
|
# - Single-user deployments
|
|
#
|
|
# Generated: 2026-01-12
|
|
|
|
let helpers = import "../../schemas/platform/common/helpers.ncl" in
|
|
let defaults = import "../../schemas/vapora/main.ncl" in
|
|
let mode_config = import "../../schemas/platform/defaults/deployment/solo.ncl" in
|
|
|
|
# Solo mode composition: base defaults + mode overlay
|
|
helpers.compose_config defaults mode_config {
|
|
# Optional: User customizations (empty for defaults)
|
|
# Example customizations:
|
|
# backend.port = 9001,
|
|
# llm_router.providers.ollama_enabled = true,
|
|
# monitoring.log_level = "trace",
|
|
}
|