]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/dev/client.sh
Bidi support
[github/Chocobozzz/PeerTube.git] / scripts / dev / client.sh
CommitLineData
0e4338fd 1#!/bin/bash
0e4ffb4b
LA
2
3set -eu
93534495 4
27bc9586
C
5clientConfiguration="hmr"
6
7if [ ! -z ${2+x} ] && [ "$2" = "--ar-locale" ]; then
8 clientConfiguration="ar-locale"
9fi
10
11clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration $clientConfiguration --host 0.0.0.0 --disable-host-check --port 3000"
36619ac8 12serverCommand="npm run build:server && NODE_ENV=test node dist/server"
9b7668f5 13
99ae9d3a 14if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then
9b7668f5
C
15 NODE_ENV=test eval $clientCommand
16else
36619ac8 17 NODE_ENV=test node node_modules/.bin/concurrently -k \
9b7668f5
C
18 "$clientCommand" \
19 "$serverCommand"
20fi
21
22