Spaces:
Runtime error
Runtime error
File size: 913 Bytes
51d744d 25d2b8d 51d744d 25d2b8d 51d744d 25d2b8d 51d744d 25d2b8d 51d744d 25d2b8d 51d744d 25d2b8d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
#!/bin/bash
# Quick deploy to Hugging Face Spaces
echo "π Quick Deploy to Hugging Face Spaces"
echo "======================================"
# Check if we're in the right directory
if [ ! -f "app.py" ]; then
echo "β Error: app.py not found. Run this from the huggingface/ directory"
exit 1
fi
echo "π Files to upload:"
echo " - app.py"
echo " - Dockerfile"
echo " - requirements.txt"
echo " - README.md"
echo ""
echo "π Upload these files to your Hugging Face Space:"
echo " https://huggingface.co/spaces/arithescientist/intercept"
echo ""
echo "β
This simplified version should start much faster!"
echo " - No nerfstudio at startup (installed on demand)"
echo " - Minimal dependencies"
echo " - Faster container startup"
echo ""
echo "π Next steps:"
echo "1. Upload the files above to your HF Space"
echo "2. Wait for build to complete"
echo "3. Test with your iOS app" |