CoolFace
Apppublic

moebiusT7/book-ocr-studio

sourceHugging Faceagpl-3.0updated 2d agoView on Hugging Face
0likes
run.sh10 linesDownload Raw Back to root
1#!/usr/bin/env bash2set -euo pipefail3cd -- "$(dirname -- "$0")"4umask 0775if [[ ! -x .venv/bin/python ]]; then6  echo "Environment missing. Run bash install.sh first; see INSTALL.md." >&27  exit 18fi9exec .venv/bin/python -m streamlit run app.py --server.headless true --server.address 127.0.0.1 --server.port "${BOOK_OCR_PORT:-8507}" --browser.gatherUsageStats false --server.maxUploadSize 20010