xbp 10.28.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
17
18
//! 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, normalize_config_paths_for_persistence,
    resolve_config_paths_for_runtime, validate_services, DatabaseConfig, DeploymentConfig,
    PublishProjectConfig, PublishTargetConfig, ServiceCommands, ServiceConfig, SystemdConfig,
    XbpConfig,
};
pub use deployment_executor::DeploymentExecutor;
pub use project_detector::{ProjectDetector, ProjectType};