PeerTube/scripts/dev/server.sh

29 lines
782 B
Bash
Raw Normal View History

2020-02-19 08:56:24 +01:00
#!/bin/bash
2018-03-27 10:35:12 +02:00
set -eu
2017-06-11 11:29:03 +02:00
2019-11-29 13:36:40 +01:00
if [ ! -f "./client/dist/en-US/index.html" ]; then
2020-02-19 09:14:28 +01:00
if [ -z ${1+x} ] || [ "$1" != "--skip-client" ]; then
echo "client/dist/en-US/index.html does not exist, compile client files..."
npm run build:client -- --light
fi
2017-06-11 11:29:03 +02:00
fi
2019-12-17 15:33:58 +01:00
# Copy locales
mkdir -p "./client/dist"
rm -rf "./client/dist/locale"
cp -r "./client/src/locale" "./client/dist/locale"
rm -rf "./dist"
mkdir "./dist"
cp "./tsconfig.json" "./dist"
npm run tsc -- --incremental --sourceMap
cp -r ./server/static ./server/assets ./dist/server
2020-07-28 09:57:16 +02:00
cp -r "./server/lib/emails" "./dist/server/lib"
2019-12-17 15:33:58 +01:00
2020-01-22 10:00:38 +01:00
NODE_ENV=test node node_modules/.bin/concurrently -k \
"node_modules/.bin/nodemon --delay 1 --watch ./dist dist/server" \
"node_modules/.bin/tsc --incremental --sourceMap --preserveWatchOutput -w"