Spaces:
Sleeping
Sleeping
File size: 193 Bytes
c802d72 | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
echo "Downloading assets..."
python download_assets.py
echo "Listing assets..."
find assets -maxdepth 4
echo "Starting FastAPI..."
uvicorn app.main:app --host 0.0.0.0 --port 7860 |