aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/play.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/play.sh')
-rwxr-xr-xscripts/play.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/play.sh b/scripts/play.sh
deleted file mode 100755
index 69725da93..000000000
--- a/scripts/play.sh
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/bin/sh
2
3set -eu
4
5if [ ! -f "dist/server.js" ]; then
6 echo "Missing server file (server.js)."
7 exit -1
8fi
9
10max=${1:-3}
11
12for i in $(seq 1 "$max"); do
13 NODE_ENV=test NODE_APP_INSTANCE=$i node dist/server.js &
14 sleep 1
15done