1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 09:49:20 +02:00
Peertube/scripts/play.sh

11 lines
191 B
Bash
Executable file

#!/usr/bin/env sh
if [ ! -f server.js ]; then
echo "Missing server file (server.js)."
exit -1
fi
for i in 1 2 3; do
NODE_ENV=test NODE_APP_INSTANCE=$i node server.js &
sleep 1
done