2018-03-27 10:35:12 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
2016-04-30 11:17:50 +02:00
|
|
|
|
2020-02-07 15:51:19 +01:00
|
|
|
clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr,fr --host 0.0.0.0 --disable-host-check --port 3000"
|
2020-01-22 10:00:38 +01:00
|
|
|
serverCommand="npm run build:server && NODE_ENV=test node dist/server"
|
2020-01-07 16:53:55 +01:00
|
|
|
|
|
|
|
if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then
|
|
|
|
NODE_ENV=test eval $clientCommand
|
|
|
|
else
|
2020-01-22 10:00:38 +01:00
|
|
|
NODE_ENV=test node node_modules/.bin/concurrently -k \
|
2020-01-07 16:53:55 +01:00
|
|
|
"$clientCommand" \
|
|
|
|
"$serverCommand"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|