Spaces:
Sleeping
Sleeping
| # 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!" |