From d13b9b7df91915d9aa97718115058f17656d8d48 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 8 Mar 2026 07:25:39 -0700 Subject: [PATCH] fix(openclaw-bridge): add --allow-unconfigured to gateway command openclaw gateway requires either a config file or --allow-unconfigured flag to start without prior setup. Without it the process exits with 'Missing config' and enters a restart loop. Co-Authored-By: Claude Sonnet 4.6 --- packages/openclaw-bridge/supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/openclaw-bridge/supervisord.conf b/packages/openclaw-bridge/supervisord.conf index 2d5edf3..43cf576 100644 --- a/packages/openclaw-bridge/supervisord.conf +++ b/packages/openclaw-bridge/supervisord.conf @@ -14,7 +14,7 @@ pidfile=/tmp/supervisord.pid ; OpenClaw gateway process [program:openclaw] -command=node /app/openclaw/dist/index.js gateway --port 18789 +command=node /app/openclaw/dist/index.js gateway --port 18789 --allow-unconfigured directory=/app/openclaw autostart=true autorestart=true