Spaces:
Running
Running
File size: 325 Bytes
7fe631a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Startup script for BioNexus Hub on Hugging Face Spaces
echo "Starting BioNexus Hub application..."
# Start the server in the background
cd server
npm start &
# Wait a moment for the server to start
sleep 5
# Start the client
cd ../client
npm run build
echo "BioNexus Hub application started successfully!" |