mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-28 03:23:57 -06:00
8 lines
222 B
Bash
Executable File
8 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
NODE_ENV=test npm run concurrently -- -k \
|
|
"cd client && npm run webpack -- --config webpack/webpack.video-embed.js --mode development --watch" \
|
|
"npm run build:server && NODE_ENV=test npm start"
|