open-o1 / start.sh
saq1b's picture
Upload 7 files
cde68dd verified
raw
history blame
233 Bytes
#!/bin/bash
set -e
# Start the Next.js application
npm start &
# Start the FastAPI backend
uvicorn main:app --host 0.0.0.0 --port 8000
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?