Spaces:
Sleeping
Sleeping
File size: 428 Bytes
d2ba52b c86d940 4dc1e6c c86d940 2e94196 d2ba52b ff1a300 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Debug information
echo "=== Debug Information ==="
echo "Current user: $(whoami)"
echo "User ID: $(id)"
echo "Current directory: $(pwd)"
echo "Home directory: $HOME"
echo "PATH: $PATH"
echo "========================="
echo "Starting Fashion Analyzer with transformers-based AI models..."
# Start FastAPI on port 7860 (HF Spaces requirement)
echo "Starting FastAPI server on port 7860..."
cd /app
python3 app.py
|