open-o1 / start.sh
saq1b's picture
Upload 6 files
ed30b5b verified
raw
history blame
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 $?