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