xbp 10.5.0

XBP is a zero-config build pack that can also interact with proxies, kafka, sockets, synthetic monitors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! deployment strategies module
//!
//! provides intelligent project detection and deployment strategies
//! for different types of applications nodejs nextjs rust python expressjs etc
//! includes config management service validation and deployment execution

pub mod deployment_config;
pub mod deployment_executor;
pub mod project_detector;

pub use deployment_config::{
    get_all_services, get_service_by_name, validate_services, DeploymentConfig, ServiceCommands,
    ServiceConfig, XbpConfig,
};
pub use deployment_executor::DeploymentExecutor;
pub use project_detector::{ProjectDetector, ProjectType};