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:
parent
64672a1cde
commit
2971282c45
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
''
|
''
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue