Spaces:
Sleeping
Sleeping
File size: 193 Bytes
01f0120 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
# Start the FastAPI backend
uvicorn src.api.main:app --host 0.0.0.0 --port 8000 &
# Wait a bit for the backend to start
sleep 5
# Start the Next.js frontend
npm start -- -p 3000 |