17 lines
353 B
Bash
Executable File
17 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
printf "\033[38;5;154meirtube-start\033[0m\n"
|
|
|
|
cd /live/eirtube
|
|
|
|
#npm ci --legacy-peer-deps --loglevel verbose
|
|
#npm install sass@1.57.1
|
|
|
|
if [ ! -d "node_modules" ]; then
|
|
cp -r /tmp/node_modules .
|
|
fi
|
|
if [ ! -d "logs" ]; then
|
|
mkdir logs
|
|
fi
|
|
node --disable-warning DEP0040 server.js | tee logs/$(date +'%Y_%m_%d_%H-%M-%S').txt
|