xbp 0.5.1

XBP is a build pack and deployment management tool to deploy, rust, nextjs etc and manage the NGINX configs below it
Documentation
//! Command modules aggregation
//!
//! Exposes all CLI command implementations and selective re-exports for
//! convenient use in the binary entrypoint.
pub mod install;
pub mod logs;
pub mod pm2;
pub mod deploy;
pub mod redeploy_v2;
pub mod ports;
pub mod setup;
pub mod redeploy;
pub mod config_cmd;
pub mod help;
pub mod version;
pub mod curl;

pub use install::*;
pub use logs::{view_logs, parse_logs_args};
pub use pm2::{pm2_list, pm2_logs};
pub use deploy::deploy_application;
pub use ports::run_ports;
pub use setup::run_setup;
pub use redeploy::run_redeploy;
pub use config_cmd::run_config;
pub use help::print_help;
pub use version::print_version;
pub use curl::run_curl;