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

11 lines
185 B
Bash
Raw Normal View History

2018-03-27 08:35:12 +00:00
#!/bin/sh
set -eu
2017-06-11 09:29:03 +00:00
2017-07-06 16:01:02 +00:00
if [ ! -f "./client/dist/index.html" ]; then
echo "client/dist/index.html does not exist, compile client files..."
2017-06-11 09:29:03 +00:00
npm run build:client
fi
npm run watch:server