PeerTube/scripts/dev/embed.sh

10 lines
205 B
Bash
Raw Normal View History

2020-02-19 01:56:24 -06:00
#!/bin/bash
2019-12-17 08:33:58 -06:00
set -eu
2023-12-18 02:36:08 -06:00
npm run build:server
npm run concurrently -- -k \
2019-12-17 08:33:58 -06:00
"cd client && npm run webpack -- --config webpack/webpack.video-embed.js --mode development --watch" \
2023-12-18 02:36:08 -06:00
"NODE_ENV=dev npm start"