Files
openclaw-dashboard/start.sh
T
2026-03-17 15:52:10 +00:00

7 lines
287 B
Bash
Executable File

#!/bin/bash
# Lance le dashboard OpenClaw en arrière-plan dans le conteneur
cd /home/node/.openclaw/workspace/projets/openclaw-dashboard
npm install --silent 2>/dev/null
SESSIONS_DIR=/home/node/.openclaw/agents PORT=3850 node server.js &
echo "Dashboard lancé sur http://0.0.0.0:3850"