1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 10:19:35 +02:00
Peertube/scripts/play.sh
2017-06-25 11:36:57 +02:00

13 lines
224 B
Bash
Executable file

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