vedaMD / start.sh
sniro23's picture
Initial commit without binary files
19aaa42
raw
history blame contribute delete
193 Bytes
#!/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