mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 09:49:20 +02:00
9 lines
215 B
Bash
Executable file
9 lines
215 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
npm run build:server
|
|
|
|
npm run concurrently -- -k \
|
|
"cd client && ./node_modules/.bin/vite -c ./src/standalone/videos/vite.config.mjs build -w --mode=development" \
|
|
"NODE_ENV=dev npm start"
|