xbp 0.9.4

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
//! 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 project_detector;
pub mod deployment_config;
pub mod deployment_executor;

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