remove local paths

This commit is contained in:
Timur Gordon 2025-08-05 12:27:17 +02:00
parent 7a652c9c3c
commit 806beee215
3 changed files with 4 additions and 4 deletions

View File

@ -24,5 +24,5 @@ tls = false
# OSIS Worker Configuration # OSIS Worker Configuration
# Handles OSIS (HeroScript) execution # Handles OSIS (HeroScript) execution
[osis_worker] [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" } env_vars = { "RUST_LOG" = "info", "WORKER_TYPE" = "osis", "MAX_CONCURRENT_JOBS" = "5" }

View File

@ -32,7 +32,7 @@ log = "0.4"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } # For async main in examples, and general async tokio = { version = "1", features = ["macros", "rt-multi-thread"] } # For async main in examples, and general async
colored = "2.0" colored = "2.0"
hero_job = { path = "../job" } 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" ratatui = "0.28"
crossterm = "0.28" crossterm = "0.28"
anyhow = "1.0" anyhow = "1.0"

View File

@ -9,11 +9,11 @@ redis_url = "redis://localhost:6379"
# OSIS Worker Configuration # OSIS Worker Configuration
# Handles OSIS (HeroScript) execution # Handles OSIS (HeroScript) execution
[osis_worker] [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" } env_vars = { "RUST_LOG" = "info", "WORKER_TYPE" = "osis", "MAX_CONCURRENT_JOBS" = "5" }
# SAL Worker Configuration # SAL Worker Configuration
# Handles System Abstraction Layer scripts # Handles System Abstraction Layer scripts
[sal_worker] [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" } env_vars = { "RUST_LOG" = "info", "WORKER_TYPE" = "sal", "MAX_CONCURRENT_JOBS" = "3" }