BioNexus / start.bat
gaialive's picture
Upload 16 files
7fe631a verified
@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!