mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-26 02:30:37 -06:00
12 lines
191 B
Bash
Executable File
12 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
|