mirror of
https://github.com/arjunkomath/openclaw-railway-template.git
synced 2026-08-14 00:48:11 +00:00
15 lines
286 B
Bash
Executable File
15 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
chown -R openclaw:openclaw /data
|
|
chmod 700 /data
|
|
|
|
if [ ! -d /data/.linuxbrew ]; then
|
|
cp -a /home/linuxbrew/.linuxbrew /data/.linuxbrew
|
|
fi
|
|
|
|
rm -rf /home/linuxbrew/.linuxbrew
|
|
ln -sfn /data/.linuxbrew /home/linuxbrew/.linuxbrew
|
|
|
|
exec gosu openclaw node src/server.js
|