Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
saq1b
/
open-o1
like
0
Build error
App
Files
Files
Community
8dae1b6
open-o1
/
start.sh
saq1b
Upload 6 files
ed30b5b
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
206 Bytes
#!/bin/bash
set
-e
# Start the Next.js application
npm start &
# Start the FastAPI backend
python main.py &
# Wait for any process to exit
wait
-n
# Exit with status of process that exited first
exit
$?