diff options
Diffstat (limited to 'scripts/run_servers.sh')
-rwxr-xr-x | scripts/run_servers.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/run_servers.sh b/scripts/run_servers.sh deleted file mode 100755 index 83768178c..000000000 --- a/scripts/run_servers.sh +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | if [ ! -f server.js ]; then | ||
4 | echo "The script has to be executed at the root of the project." | ||
5 | exit -1 | ||
6 | fi | ||
7 | |||
8 | NODE_ENV=test NODE_APP_INSTANCE=1 node server.js & | ||
9 | sleep 1 | ||
10 | NODE_ENV=test NODE_APP_INSTANCE=2 node server.js & | ||
11 | sleep 1 | ||
12 | NODE_ENV=test NODE_APP_INSTANCE=3 node server.js & | ||