Spaces:
Sleeping
Sleeping
| # Startup script for debugging HF Space deployment | |
| echo "π DEBUG: Starting Museum Sexoskop App" | |
| echo "π Current directory: $(pwd)" | |
| echo "π Directory contents:" | |
| ls -la | |
| echo "π Python version: $(python --version)" | |
| echo "π¦ Installed packages:" | |
| pip list | grep -E "(fastapi|uvicorn|pydantic|pillow|qrcode|transformers|torch)" | |
| echo "π App directory structure:" | |
| find /app -type d -name "app" -o -name "static" -o -name "templates" | head -20 | |
| echo "π§ Testing configuration..." | |
| if [ -f "/app/tests/test_config.py" ]; then | |
| python tests/test_config.py | |
| else | |
| echo "β tests/test_config.py not found" | |
| fi | |
| echo "π Starting FastAPI server..." | |
| export PYTHONPATH=$(pwd):$PYTHONPATH | |
| exec uvicorn app.main:app --host 0.0.0.0 --port 7860 --log-level debug | |