mirror of
https://github.com/easychen/checkchan-dist.git
synced 2026-08-29 02:09:00 +08:00
24 lines
439 B
Bash
24 lines
439 B
Bash
#!/bin/sh
|
|
crond -l 0
|
|
|
|
if [ "${VNC:="ON"}" == "ON" ]
|
|
then
|
|
pm2 start /checkchan/shell/xvfb.sh
|
|
sleep 2
|
|
export DISPLAY=:99
|
|
|
|
pm2 start /checkchan/shell/x11vnc.sh
|
|
pm2 start /checkchan/shell/novnc.sh
|
|
pm2 start /checkchan/api/app.js
|
|
pm2 start /checkchan/extension/extension.js --no-daemon
|
|
|
|
else
|
|
if [ -z "${DEV}" ]
|
|
node /checkchan/api/app.js
|
|
then
|
|
nodemon /checkchan/api/app.js
|
|
fi
|
|
|
|
fi
|
|
|