diff options
author | Alan Pearce | 2024-05-12 14:35:46 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-12 14:35:46 +0200 |
commit | 6a462c1356a505770a7a142745d394f52c151269 (patch) | |
tree | 4508cae180adf1def7f35b79c32e290a57050811 | |
parent | b517b1e0e1933b310bcbbd718fc664f87226d3b6 (diff) | |
download | searchix-6a462c1356a505770a7a142745d394f52c151269.tar.lz searchix-6a462c1356a505770a7a142745d394f52c151269.tar.zst searchix-6a462c1356a505770a7a142745d394f52c151269.zip |
build: add extra command to index without replacing existing index
-rw-r--r-- | justfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/justfile b/justfile index da0122f..18c0acf 100644 --- a/justfile +++ b/justfile @@ -23,5 +23,8 @@ precommit: dev: watchexec -e go -r wgo run -exit ./serve/ --live --config-file config.toml +index: + wgo run -exit ./import/ --config-file config.toml + reindex: - wgo run -exit ./import/ --replace --config-file config.toml + wgo run -exit ./import/ --config-file config.toml --replace |