mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
10 lines
215 B
Bash
Executable File
10 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"
|