PeerTube/scripts/dev/client.sh

8 lines
261 B
Bash
Raw Normal View History

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