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
19 lines
554 B
Plaintext
19 lines
554 B
Plaintext
# VAPORA Platform Composed Configurations - Main Entry Point
|
|
#
|
|
# This file exports all three deployment modes for easy access.
|
|
# Use individual vapora-{solo,multiuser,enterprise}.ncl files for specific deployments.
|
|
#
|
|
# Generated: January 12, 2026
|
|
# Usage: nickel export schemas/platform/configs/main.ncl
|
|
|
|
{
|
|
# Solo mode - Development and testing
|
|
solo = import "vapora-solo.ncl",
|
|
|
|
# Multiuser mode - Team collaboration
|
|
multiuser = import "vapora-multiuser.ncl",
|
|
|
|
# Enterprise mode - Production HA
|
|
enterprise = import "vapora-enterprise.ncl",
|
|
}
|