1
0
Fork 0
peertube/scripts/dev/client.sh

17 lines
465 B
Bash
Raw Normal View History

2020-02-19 07:56:24 +00:00
#!/bin/bash
2018-03-27 08:35:12 +00:00
set -eu
2020-02-10 13:48:45 +00:00
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"
2020-01-22 09:00:38 +00:00
serverCommand="npm run build:server && NODE_ENV=test node dist/server"
2020-01-07 15:53:55 +00:00
if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then
NODE_ENV=test eval $clientCommand
else
2020-01-22 09:00:38 +00:00
NODE_ENV=test node node_modules/.bin/concurrently -k \
2020-01-07 15:53:55 +00:00
"$clientCommand" \
"$serverCommand"
fi