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

10 lines
208 B
Bash
Raw Normal View History

2020-02-19 02:56:24 -05:00
#!/bin/bash
2019-12-17 09:33:58 -05:00
set -eu
npm run build:server -- --incremental
2023-12-18 03:36:08 -05:00
npm run concurrently -- -k \
"cd client && ./node_modules/.bin/vite -c ./src/standalone/videos/vite.config.mjs dev" \
2023-12-18 03:36:08 -05:00
"NODE_ENV=dev npm start"