PeerTube/scripts/dev/embed.sh

10 lines
215 B
Bash
Raw Normal View History

2020-02-19 08:56:24 +01:00
#!/bin/bash
2019-12-17 15:33:58 +01:00
set -eu
2023-12-18 09:36:08 +01:00
npm run build:server
npm run concurrently -- -k \
2024-06-24 10:15:25 +02:00
"cd client && ./node_modules/.bin/vite -c ./src/standalone/videos/vite.config.mjs build -w --mode=development" \
2023-12-18 09:36:08 +01:00
"NODE_ENV=dev npm start"