Spaces:
Paused
Paused
File size: 172 Bytes
45afee5 | 1 2 3 4 5 6 7 | #!/bin/bash
echo "Starting Uvicorn..."
echo "Current directory: $(pwd)"
echo "Listing files:"
ls -la
echo "Starting app..."
exec uvicorn app:app --host 0.0.0.0 --port 7860 |