Spaces:
Sleeping
Sleeping
| set -euo pipefail | |
| cd /app | |
| export PYTHONPATH=/app | |
| export PATH="${HOME}/.local/bin:${PATH}" | |
| if [[ ! -f data/index/atlas.sqlite || ! -f data/index/mmap/rev_off.i32 ]]; then | |
| echo "FATAL: baked etymology index missing from image (data/index)." >&2 | |
| echo "Publish artifacts/index.tar.zst and rebuild the Space image." >&2 | |
| exit 1 | |
| fi | |
| PORT="${PORT:-7860}" | |
| exec python -m uvicorn backend.app:app --host 0.0.0.0 --port "${PORT}" | |