xbp 0.6.0

XBP is a build pack and deployment management tool to deploy, rust, nextjs etc and manage the NGINX configs below it
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;