faucet-cli 1.2.0

Config-driven CLI runner for faucet-stream pipelines (YAML / JSON, Meltano-style)
Documentation
//! `faucet serve` — HTTP control plane (#127). Runs pipeline configs submitted
//! over HTTP, reusing `executor::run_expanded`. Feature-gated on `serve`;
//! structured like `cli/src/schedule/`. See
//! `docs/superpowers/specs/2026-05-30-faucet-serve-design.md`.

pub mod auth;
pub mod cluster;
pub mod config;
pub mod error;
pub mod handlers;
pub mod history;
pub mod idempotency;
pub mod load;
pub mod logs;
pub mod metrics;
pub mod observability;
pub mod registry;
pub mod runner;
pub mod server;
pub mod state;
#[cfg(feature = "triggers")]
pub mod triggers;
#[cfg(feature = "serve-ui")]
pub mod ui_assets;

pub use config::ServeConfig;

use crate::error::CliResult;

/// Boot the HTTP control plane and serve until SIGTERM/SIGINT.
pub async fn run_server(config: ServeConfig) -> CliResult<()> {
    server::serve(config).await
}