mirror of
https://github.com/kou029w/megabit-os.git
synced 2025-01-19 00:08:00 +00:00
5 lines
159 B
Text
5 lines
159 B
Text
|
#!/bin/sh
|
||
|
export NODE_PATH=$(npm root -g)
|
||
|
nodemon --delay 1 --watch /tmp --signal SIGTERM --exec 'node /tmp/index.js || true' &
|
||
|
echo $! > /var/run/megabit.pid
|