]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/dev/client.sh
bcb8b88f607ecc71faa862ea893b56c20fb90dfb
[github/Chocobozzz/PeerTube.git] / scripts / dev / client.sh
1 #!/bin/sh
2
3 set -eu
4
5 clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000"
6 serverCommand="npm run build:server && NODE_ENV=test node dist/server"
7
8 if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then
9 NODE_ENV=test eval $clientCommand
10 else
11 NODE_ENV=test node node_modules/.bin/concurrently -k \
12 "$clientCommand" \
13 "$serverCommand"
14 fi
15
16