]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/dev/client.sh
Use bash to run scripts
[github/Chocobozzz/PeerTube.git] / scripts / dev / client.sh
CommitLineData
0e4338fd 1#!/bin/bash
0e4ffb4b
LA
2
3set -eu
93534495 4
0e9c3b28 5clientCommand="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"
36619ac8 6serverCommand="npm run build:server && NODE_ENV=test node dist/server"
9b7668f5
C
7
8if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then
9 NODE_ENV=test eval $clientCommand
10else
36619ac8 11 NODE_ENV=test node node_modules/.bin/concurrently -k \
9b7668f5
C
12 "$clientCommand" \
13 "$serverCommand"
14fi
15
16