Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
sniro23/vedaMD
HealthifyLK
/
vedaMD
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
vedaMD
/
start.sh
sniro23
Initial commit without binary files
19aaa42
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
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