2018-03-27 03:35:12 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
2016-04-30 04:17:50 -05:00
|
|
|
|
2018-06-07 09:50:33 -05:00
|
|
|
NODE_ENV=test npm run concurrently -- -k \
|
2019-12-17 08:33:58 -06:00
|
|
|
"cd client && npm run ng -- serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000" \
|
2017-06-11 04:29:03 -05:00
|
|
|
"npm run build:server && NODE_ENV=test npm start"
|