xbp 0.9.3

XBP is a zero-config build pack that can also interact with proxies, kafka, sockets, synthetic monitors.
Documentation
//! xbp core library
//!
//! modular toolkit for deploying building and configuring modern projects
//! supports rust js node nextjs python expressjs and more
//! provides extensibility scripting and cloud workflow integration
//!
//! architecture
//! - commands cli subcommands as modular rust functions deploy ports logs etc
//! - logging structured async file based logs with per command tracing
//! - config load write validate config supports ssh yaml secrets
//! - strategies project detection deploy logic extensibility for new systems
//! - utils common utility functions version api integration

pub mod cli;
pub mod commands;
pub mod logging;
pub mod config;
pub mod strategies;
pub mod utils;
pub mod api;
pub mod sdk;
pub mod profile;
pub mod project_detector;