7 lines
287 B
Bash
Executable File
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"
|