]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/play.sh
Add production webpack, big thanks to @AngularClass
[github/Chocobozzz/PeerTube.git] / scripts / play.sh
CommitLineData
93534495
C
1#!/usr/bin/env sh
2
3if [ ! -f server.js ]; then
4 echo "Missing server file (server.js)."
5 exit -1
6fi
7
8for i in 1 2 3; do
9 NODE_ENV=test NODE_APP_INSTANCE=$i node server.js &
10 sleep 1
11done