greentic-setup-dev 1.2.29805051070

End-to-end bundle setup engine for the Greentic platform — pack discovery, QA-driven configuration, secrets persistence, and bundle lifecycle management
Documentation
1
2
3
4
5
6
7
8
9
10
//! Embedded static assets for the setup UI.

pub const INDEX_HTML: &str = include_str!("../../assets/setup-ui/index.html");
pub const APP_JS: &str = include_str!("../../assets/setup-ui/app.js");
pub const STYLE_CSS: &str = include_str!("../../assets/setup-ui/style.css");

/// Catalog of additional providers a user can add to the bundle, referencing
/// their GHCR/OCI pack assets. Surfaced by `GET /api/available-providers` and
/// rendered as the scrollable "add providers" list on the provider page.
pub const PROVIDERS_CATALOG: &str = include_str!("../../assets/setup-ui/providers-catalog.json");