File size: 289 Bytes
7fe631a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
echo Starting BioNexus Hub application...

REM Start the server in the background
cd server
start npm start

REM Wait a moment for the server to start
timeout /t 5 /nobreak >nul

REM Build the client
cd ../client
npm run build

echo BioNexus Hub application started successfully!