reverse-etymology / scripts /space_entrypoint.sh
Mongoosetross's picture
Fast deploy (index 375f72ab0d8e)
a7195dc verified
Raw
History Blame Contribute Delete
445 Bytes
#!/usr/bin/env bash
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}"