aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/dev/client.sh
blob: d6669ed782be292738055f13fdb315cc947f1a49 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh

set -eu

NODE_ENV=test npm run concurrently -- -k \
  "cd client && npm run ng -- serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000" \
  "npm run build:server && NODE_ENV=test npm start"