Expanic
Add Docker setup for HuggingFace Spaces
3c4125e
Raw
History Blame Contribute Delete
346 Bytes
#!/bin/bash
# Exit on error
set -e
echo "Starting Backend (FastAPI)..."
cd /app/backend
# Limit OpenMP threads for HuggingFace Space constraints
OMP_NUM_THREADS=1 python -m uvicorn main:app --host 127.0.0.1 --port 8000 &
echo "Waiting for Backend to initialize..."
sleep 5
echo "Starting Frontend (Next.js)..."
cd /app/frontend
npm run start