xbp 0.6.1

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
14
15
16
17
18
//! xbp core library
//!
//! modular toolkit for deploying building and configuring modern projects
//! supports rust js node nextjs python expressjs and more
//! provides extensibility scripting and cloud workflow integration
//!
//! architecture
//! - commands cli subcommands as modular rust functions deploy ports logs etc
//! - logging structured async file based logs with per command tracing
//! - config load write validate config supports ssh yaml secrets
//! - strategies project detection deploy logic extensibility for new systems
//! - utils common utility functions version api integration

pub mod commands;
pub mod logging;
pub mod config;
pub mod strategies;
pub mod utils;