lingo-bridge / run.sh
Iona401's picture
Publish Lingo Bridge
7135dbd verified
Raw
History Blame Contribute Delete
240 Bytes
#!/usr/bin/env bash
# Launch the Progressive Translation Card Stack locally.
set -e
cd "$(dirname "$0")"
PORT="${PORT:-7860}"
echo "Lingo Bridge -> http://127.0.0.1:${PORT}"
exec python3 -m uvicorn app:app --host 127.0.0.1 --port "${PORT}"