23 stable releases

new 1.16.11 Nov 14, 2024
1.16.10 Nov 8, 2024
1.16.6 Oct 30, 2024
1.14.2 Sep 11, 2024

#114 in Unix APIs

Download history 195/week @ 2024-08-26 231/week @ 2024-09-02 225/week @ 2024-09-09 33/week @ 2024-09-16 10/week @ 2024-09-23 10/week @ 2024-09-30 777/week @ 2024-10-07 858/week @ 2024-10-14 883/week @ 2024-10-21 613/week @ 2024-10-28 316/week @ 2024-11-04 125/week @ 2024-11-11

2,095 downloads per month
Used in komodo_cli

GPL-3.0-or-later

525KB
13K SLoC

Komodo

A system to build and deploy software across many servers

Full Docs: https://docs.rs/komodo_client/latest/komodo_client.

This is a client library for the Komodo Core API. It contains:

  • Definitions for the application api and entities.
  • A client to interact with the Komodo Core API.
  • Information on configuring Komodo Core and Periphery.

Client Configuration

The client includes a convenenience method to parse the Komodo API url and credentials from the environment:

  • KOMODO_ADDRESS
  • KOMODO_API_KEY
  • KOMODO_API_SECRET

Client Example

dotenvy::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?:

Dependencies

~14–28MB
~405K SLoC