openclaw: use --dev --auth none for gateway startup

Newer openclaw (2026.6.6) requires more config than our minimal json.
--dev creates a working config if missing, --auth none skips token
auth since the gateway is loopback-only.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Philip Peterson 2026-06-14 03:36:21 -07:00
parent 64672a1cde
commit 2971282c45

View file

@ -23,7 +23,7 @@
if [ ! -f /app/node_modules/.bin/openclaw ]; then if [ ! -f /app/node_modules/.bin/openclaw ]; then
cd /app && npm install openclaw@latest cd /app && npm install openclaw@latest
fi fi
exec /app/node_modules/.bin/openclaw gateway --port 18789 exec /app/node_modules/.bin/openclaw gateway --port 18789 --dev --auth none
'' ''
]; ];
}; };