Spaces:
Sleeping
Sleeping
File size: 186 Bytes
23f8dc9 |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
# Make sure this file is executable: chmod +x start.sh
echo "Starting FastAPI Quiz API..."
# Run uvicorn server
uvicorn api.server:app --host 0.0.0.0 --port 7860 --reload
|