xbp 0.5.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
//! Deployment strategies module
//!
//! This module provides intelligent project detection and deployment strategies
//! for different types of applications (Node.js, Next.js, Rust, etc.)

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

pub use project_detector::{ProjectType, ProjectDetector};
pub use deployment_config::{DeploymentConfig, XbpConfig};
pub use deployment_executor::DeploymentExecutor;