From 806beee215f5dabe6724530899d025b3b2ed22d9 Mon Sep 17 00:00:00 2001 From: Timur Gordon <31495328+timurgordon@users.noreply.github.com> Date: Tue, 5 Aug 2025 12:27:17 +0200 Subject: [PATCH] remove local paths --- cmd/config.toml | 2 +- core/supervisor/Cargo.toml | 2 +- core/supervisor/examples/cli/config.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/config.toml b/cmd/config.toml index 6746382..e03523b 100644 --- a/cmd/config.toml +++ b/cmd/config.toml @@ -24,5 +24,5 @@ tls = false # OSIS Worker Configuration # Handles OSIS (HeroScript) execution [osis_worker] -binary_path = "/Users/timurgordon/code/git.ourworld.tf/herocode/hero/target/debug/osis" +binary_path = "../target/debug/osis" env_vars = { "RUST_LOG" = "info", "WORKER_TYPE" = "osis", "MAX_CONCURRENT_JOBS" = "5" } diff --git a/core/supervisor/Cargo.toml b/core/supervisor/Cargo.toml index dd57893..e183163 100644 --- a/core/supervisor/Cargo.toml +++ b/core/supervisor/Cargo.toml @@ -32,7 +32,7 @@ log = "0.4" tokio = { version = "1", features = ["macros", "rt-multi-thread"] } # For async main in examples, and general async colored = "2.0" hero_job = { path = "../job" } -zinit-client = { path = "/Users/timurgordon/code/github/threefoldtech/zinit/zinit-client" } +zinit-client = { git = "https://github.com/threefoldtech/zinit", branch = "master", default-features = false, features = ["client"] } ratatui = "0.28" crossterm = "0.28" anyhow = "1.0" diff --git a/core/supervisor/examples/cli/config.toml b/core/supervisor/examples/cli/config.toml index d82459f..b3ba184 100644 --- a/core/supervisor/examples/cli/config.toml +++ b/core/supervisor/examples/cli/config.toml @@ -9,11 +9,11 @@ redis_url = "redis://localhost:6379" # OSIS Worker Configuration # Handles OSIS (HeroScript) execution [osis_worker] -binary_path = "/Users/timurgordon/code/git.ourworld.tf/herocode/hero/target/debug/osis" +binary_path = "../../../target/debug/osis" env_vars = { "RUST_LOG" = "info", "WORKER_TYPE" = "osis", "MAX_CONCURRENT_JOBS" = "5" } # SAL Worker Configuration # Handles System Abstraction Layer scripts [sal_worker] -binary_path = "/Users/timurgordon/code/git.ourworld.tf/herocode/hero/target/debug/sal" +binary_path = "../../../target/debug/sal" env_vars = { "RUST_LOG" = "info", "WORKER_TYPE" = "sal", "MAX_CONCURRENT_JOBS" = "3" } \ No newline at end of file