foundation_deployment_platform 0.1.1

Foundation deployment platform — VM/container orchestration, Docker runtime, guest infrastructure
Documentation
//! Standalone testbed CLI — VM lifecycle via the Provider trait.
//!
//! Install: `cargo install --path backends/foundation_testbed --features cli`
//! Run: `testbed start windows-build`

#![cfg(feature = "vms")]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::cast_possible_truncation)]
#![allow(clippy::cast_possible_wrap)]
#![allow(clippy::cast_precision_loss)]
#![allow(clippy::cast_sign_loss)]
#![allow(clippy::pedantic)]

use foundation_core::valtron::valtron;

#[valtron]
fn main() {
    let matches = foundation_testbed::vms::cli::command().get_matches();
    if let Err(e) = foundation_testbed::vms::cli::run(&matches) {
        eprintln!("error: {e}");
        std::process::exit(1);
    }
}