25 lines
886 B
Plaintext
25 lines
886 B
Plaintext
|
|
# 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",
|
||
|
|
}
|