intercept / quick-deploy.sh
arithescientist's picture
Upload 7 files
25d2b8d verified
raw
history blame contribute delete
913 Bytes
#!/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"