Spaces:
Sleeping
Sleeping
File size: 256 Bytes
803d604 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/bin/bash
# Build script for BioNexus Hub
echo "Building BioNexus Hub..."
# Build client
echo "Building client..."
cd client
npm install
npm run build
cd ..
# Build server
echo "Building server..."
cd server
npm install
cd ..
echo "Build completed!" |