| Crates.io | komodo_client |
| lib.rs | komodo_client |
| version | 2.0.0-dev-104 |
| created_at | 2024-09-01 01:22:30.515065+00 |
| updated_at | 2026-01-02 19:53:51.510462+00 |
| description | Client for the Komodo build and deployment system |
| homepage | https://komo.do |
| repository | https://github.com/moghtech/komodo |
| max_upload_size | |
| id | 1359285 |
| size | 916,143 |
A system to build and deploy software across many servers. https://komo.do
Docs: https://docs.rs/komodo_client/latest/komodo_client.
This is a client library for the Komodo Core API. It contains:
The client includes a convenenience method to parse the Komodo API url and credentials from the environment:
KOMODO_ADDRESSKOMODO_API_KEYKOMODO_API_SECRETdotenvy::dotenv().ok();
let client = KomodoClient::new_from_env()?;
// Get all the deployments
let deployments = client.read(ListDeployments::default()).await?;
println!("{deployments:#?}");
let update = client.execute(RunBuild { build: "test-build".to_string() }).await?: