openvidu/prepare.sh
2025-03-10 19:25:11 +01:00

21 lines
218 B
Bash
Executable File

#!/bin/bash
set -e
# Build types library
cd types
npm install
npm run sync-ce
cd ..
# Build backend
cd backend
npm install
npm run build:prod
cd ..
# Build frontend
cd frontend
npm install
# npm run lib:build
cd ..