File size: 293 Bytes
ed59ac9 | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
# Start the sync worker service in the background
echo "Starting background Sync Worker..."
python src/similarity_model/sync_projects.py &
# Start the FastAPI API server in the foreground
echo "Starting Uvicorn API server..."
exec uvicorn api.main:app --host 0.0.0.0 --port 7860
|