File size: 193 Bytes
19aaa42
 
 
 
 
 
 
 
 
 
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