Spaces:
Sleeping
Sleeping
File size: 176 Bytes
1dc2504 | 1 2 3 4 5 6 7 | #!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
source .venv311/bin/activate
pip install -q -r api/requirements.txt
uvicorn api.main:app --reload --host 0.0.0.0 --port 8000
|