1
0
Fork 0
peertube/scripts/dev/client.sh

8 lines
261 B
Bash
Raw Normal View History

2018-03-27 08:35:12 +00:00
#!/bin/sh
set -eu
2018-06-07 14:50:33 +00:00
NODE_ENV=test npm run concurrently -- -k \
2019-12-17 14:33:58 +00: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 09:29:03 +00:00
"npm run build:server && NODE_ENV=test npm start"