Alwin111's picture
Add initial implementation of Fashion Analyzer with Gemini API integration
89fd84b
raw
history blame contribute delete
507 Bytes
#!/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 Gemini AI models..."
# Start FastAPI on port 7860 (HF Spaces requirement)
echo "Starting FastAPI server on port 7860..."
cd /app
# Run the FastAPI application
python3 -m uvicorn gemni_fashion_recommender:app --host 0.0.0.0 --port 7860