diff options
author | Alan Pearce | 2024-05-13 21:50:14 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-13 22:25:46 +0200 |
commit | 6b40e0c0fa90f11be14a93f1d6275779fd645cac (patch) | |
tree | 0df5bea87242450829ca441d235c077a0e09a149 /justfile | |
parent | 2722f24af87f437ed9fcb8cc743ad1784141fd3a (diff) | |
download | searchix-6b40e0c0fa90f11be14a93f1d6275779fd645cac.tar.lz searchix-6b40e0c0fa90f11be14a93f1d6275779fd645cac.tar.zst searchix-6b40e0c0fa90f11be14a93f1d6275779fd645cac.zip |
refactor: combine import and web server into one binary
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/justfile b/justfile index 8883577..7a3988c 100644 --- a/justfile +++ b/justfile @@ -21,10 +21,7 @@ precommit: nix-build -A pre-commit-check dev: - watchexec -e go -r wgo run -exit ./serve/ --live --config config.toml - -index: - wgo run -exit ./import/ --config config.toml + watchexec -e go -r wgo run -exit ./ --live --config config.toml reindex: - wgo run -exit ./import/ --config config.toml --replace + wgo run -exit . --config config.toml --replace |