1
0
Fork 0

Use scripty instead of writing shell commands in package.json

This commit is contained in:
Chocobozzz 2016-04-30 11:17:50 +02:00
parent 1342381694
commit 9353449515
18 changed files with 128 additions and 39 deletions

11
scripts/play.sh Executable file
View file

@ -0,0 +1,11 @@
#!/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