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 <noreply@anthropic.com>
This commit is contained in:
parent
72825d5526
commit
d13b9b7df9
|
|
@ -14,7 +14,7 @@ pidfile=/tmp/supervisord.pid
|
||||||
|
|
||||||
; OpenClaw gateway process
|
; OpenClaw gateway process
|
||||||
[program:openclaw]
|
[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
|
directory=/app/openclaw
|
||||||
autostart=true
|
autostart=true
|
||||||
autorestart=true
|
autorestart=true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue