21 lines
654 B
TOML
21 lines
654 B
TOML
# Hero Supervisor CLI Configuration
|
|
# This configuration sets up the supervisor with an OSIS actor for job processing
|
|
|
|
[global]
|
|
redis_url = "redis://127.0.0.1/"
|
|
|
|
[actors]
|
|
# OSIS Actor configuration - handles Object Storage and Indexing System jobs
|
|
osis_actor = "/Users/timurgordon/code/git.ourworld.tf/herocode/actor_osis/target/debug/actor_osis"
|
|
|
|
# Optional: Other actors can be configured here
|
|
# sal_actor = "/path/to/sal_actor"
|
|
# v_actor = "/path/to/v_actor"
|
|
# python_actor = "/path/to/python_actor"
|
|
|
|
# Optional: WebSocket server configuration for remote API access
|
|
# [websocket]
|
|
# host = "127.0.0.1"
|
|
# port = 8443
|
|
# redis_url = "redis://127.0.0.1/"
|