File size: 216 Bytes
803d604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@echo off
echo Building BioNexus Hub...

REM Build client
echo Building client...
cd client
npm install
npm run build
cd ..

REM Build server
echo Building server...
cd server
npm install
cd ..

echo Build completed!