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",
|
||
|
|
}
|