deepfake-server / scripts /start_api.sh
DevQueen's picture
Sync from GitHub via hub-sync
1dc2504 verified
raw
history blame contribute delete
176 Bytes
#!/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