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

23 lines
625 B
Bash
Raw Normal View History

2020-02-19 02:56:24 -05:00
#!/bin/bash
2018-03-27 04:35:12 -04:00
set -eu
2021-06-07 11:38:31 -04:00
clientConfiguration="hmr"
if [ ! -z ${2+x} ] && [ "$2" = "--ar-locale" ]; then
clientConfiguration="ar-locale"
fi
2021-05-27 12:25:00 -04:00
clientCommand="cd client && node --max_old_space_size=4096 node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration $clientConfiguration --host 0.0.0.0 --disable-host-check --port 3000"
2020-01-22 04:00:38 -05:00
serverCommand="npm run build:server && NODE_ENV=test node dist/server"
2020-01-07 10:53:55 -05:00
2020-02-19 03:14:28 -05:00
if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then
2020-01-07 10:53:55 -05:00
NODE_ENV=test eval $clientCommand
else
2020-01-22 04:00:38 -05:00
NODE_ENV=test node node_modules/.bin/concurrently -k \
2020-01-07 10:53:55 -05:00
"$clientCommand" \
"$serverCommand"
fi