36 lines
1021 B
Bash
36 lines
1021 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
(cd client/src/standalone/player && npm run build)
|
|
|
|
clientConfiguration="hmr"
|
|
|
|
if [ ! -z ${2+x} ] && [ "$2" = "--ar-locale" ]; then
|
|
clientConfiguration="ar-locale"
|
|
fi
|
|
|
|
embedCommand="cd client/src/standalone/player && npm run dev"
|
|
sslArgs=""
|
|
if [ "${DEV_SSL:-false}" = "true" ]; then
|
|
certPath="${DEV_SSL_CERT:-../certs/cert.pem}"
|
|
keyPath="${DEV_SSL_KEY:-../certs/key.pem}"
|
|
sslArgs="--ssl true --ssl-cert $certPath --ssl-key $keyPath"
|
|
fi
|
|
|
|
clientCommand="cd client && NODE_OPTIONS=--max_old_space_size=8192 node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration $clientConfiguration --host 0.0.0.0 --port 3000 $sslArgs"
|
|
serverCommand="ANGULAR_CLIENT_ENABLED=true NODE_ENV=dev node dist/server"
|
|
|
|
if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then
|
|
node_modules/.bin/concurrently -k \
|
|
"$embedCommand" \
|
|
"$clientCommand"
|
|
else
|
|
npm run build:server
|
|
|
|
node_modules/.bin/concurrently -k \
|
|
"$embedCommand" \
|
|
"$clientCommand" \
|
|
"$serverCommand"
|
|
fi
|