quicktools / scripts /start_hf.sh
github-actions[bot]
deploy: sync to hugging face
4cb7ab8
raw
history blame contribute delete
184 Bytes
#!/bin/bash
echo "Starting Backend..."
cd /app/backend && uvicorn main:app --host 0.0.0.0 --port 13002 &
echo "Starting Frontend..."
cd /app/frontend && exec npm run start -- -p 7860