]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/dev/client.sh
/!\ Use a dedicated config file for development
[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
8cbc40b2 11clientCommand="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"
9452d4fd 12serverCommand="npm run build:server && NODE_ENV=dev node dist/server"
9b7668f5 13
99ae9d3a 14if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then
9452d4fd 15 eval $clientCommand
9b7668f5 16else
9452d4fd 17 node node_modules/.bin/concurrently -k \
9b7668f5
C
18 "$clientCommand" \
19 "$serverCommand"
20fi
21
22