2020-02-19 08:56:24 +01:00
|
|
|
#!/bin/bash
|
2018-03-27 10:35:12 +02:00
|
|
|
|
|
|
|
set -eu
|
2016-04-30 11:17:50 +02:00
|
|
|
|
2021-06-07 17:38:31 +02:00
|
|
|
clientConfiguration="hmr"
|
|
|
|
|
|
|
|
if [ ! -z ${2+x} ] && [ "$2" = "--ar-locale" ]; then
|
|
|
|
clientConfiguration="ar-locale"
|
|
|
|
fi
|
|
|
|
|
2021-05-27 18:25:00 +02: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"
|
2024-03-18 10:22:46 +01:00
|
|
|
serverCommand="NODE_ENV=dev node dist/server"
|
2020-01-07 16:53:55 +01:00
|
|
|
|
2020-02-19 09:14:28 +01:00
|
|
|
if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then
|
2022-07-06 15:44:14 +02:00
|
|
|
eval $clientCommand
|
2020-01-07 16:53:55 +01:00
|
|
|
else
|
2024-03-15 16:49:55 +01:00
|
|
|
npm run build:server
|
|
|
|
|
2022-07-06 15:44:14 +02:00
|
|
|
node node_modules/.bin/concurrently -k \
|
2020-01-07 16:53:55 +01:00
|
|
|
"$clientCommand" \
|
|
|
|
"$serverCommand"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|