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

@@ -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" }