Spaces:
Runtime error
Runtime error
| # 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" |