Troubleshooting
reference debug troubleshooting
Common issues and solutions when running the application.
Connection Issues
”Connecting…” stuck forever
- Cause: The WebSocket connection failed to establish.
- Solution:
- Check if the server is running (
docker compose ps). - Check the browser console (
F12) for “Connection Refused”. - Verify
DOMAIN_NAMEin.envmatches the URL you are accessing.
- Check if the server is running (
”Camera access denied”
- Cause: Browser permission blocked.
- Solution:
- Click the lock icon in the address bar.
- Allow “Camera” permissions.
- Reload the page.
Inference Issues
High Latency / Lag
- Cause: CPU bottleneck or slow network.
- Solution:
- Ensure
use_gpuis set appropriately inconstants.pyor.env(currently CPU focused). - Lower the
CONFIG.fpsinlive-signs.js.
- Ensure
Poor Accuracy
- Cause: Bad lighting or occlusion.
- Solution:
- Ensure your hands and face are clearly visible.
- Check the “Skeleton” visualization (if enabled via debug flag) to see what the model “sees”.
Build Failures
”uv not found”
- Cause: Docker build step failed to grab
uv. - Solution: Ensure internet access for the container builder or verify the
COPY --frominstruction in Dockerfile.