#!/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"