Files
trailbase/examples/coffee-vector-search/Makefile
T
Sebastian Jeltsch c3a81d7359 Clean up examples and tutorials as well as minor doc tweaks.
Also add a reconnect loop to collab clicker.
2025-01-24 14:26:16 +01:00

13 lines
244 B
Makefile

build_n_data: build data_init
build: dist
rm -rf dist && pnpm build
data_init:
rm -rf traildepot/data && mkdir -p traildepot/data && cat import.sql | sqlite3 traildepot/data/main.db -
run:
cargo run -- run --public-dir dist
.PHONY: init