mirror of https://github.com/Chocobozzz/PeerTube
6 lines
130 B
Bash
6 lines
130 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
NODE_ENV=test concurrently -k \
|
||
|
"npm run watch:client" \
|
||
|
"npm run build:server && NODE_ENV=test npm start"
|