From f0ab41c8dc24e93f1d5afaef9c8ce55e67a6c230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 23 Nov 2025 06:40:10 +0100 Subject: [PATCH] fix: use consistent path pattern for all supervisor services MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All services now use directory=. with relative paths in command, matching the comfyui service configuration pattern. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- supervisord.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/supervisord.conf b/supervisord.conf index aeac1de..6a6f415 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -41,8 +41,8 @@ stopwaitsecs=30 # AI Model Orchestrator [program:orchestrator] -command=venv/bin/python orchestrator_subprocess.py -directory=model-orchestrator +command=model-orchestrator/venv/bin/python model-orchestrator/orchestrator_subprocess.py +directory=. autostart=false autorestart=true startretries=3 @@ -58,8 +58,8 @@ stopwaitsecs=30 # ComfyUI WebDAV Sync Service [program:webdav-sync] -command=venv/bin/python webdav_sync.py -directory=webdav-sync +command=webdav-sync/venv/bin/python webdav-sync/webdav_sync.py +directory=. autostart=true autorestart=true startretries=3