semantic bufo search find-bufo.com
bufo
at fix-query-length-error-handling 27 lines 640 B view raw
1# bufo search justfile 2 3# re-index all bufos with new embeddings 4re-index: 5 @echo "re-indexing all bufos with input_type=document..." 6 uv run scripts/ingest_bufos.py 7 8# deploy to fly.io 9deploy: 10 @echo "deploying to fly.io..." 11 fly deploy --wait-timeout 180 12 13# run dev server with hot reload 14dev: 15 @echo "starting dev server with hot reload..." 16 RUST_LOG=info cargo watch -x run -w src -w static 17 18# build and run locally 19run: 20 @echo "building and running locally..." 21 cargo build --release 22 ./target/release/find-bufo 23 24# build release binary 25build: 26 @echo "building release binary..." 27 cargo build --release