just: fix watch-* commands
Alan Pearce alan@alanpearce.eu
Wed, 24 Apr 2024 15:18:10 +0200
1 files changed, 2 insertions(+), 2 deletions(-)
jump to
M justfile → justfile
@@ -24,12 +24,12 @@ watch-flake command: watchexec --restart -w flake.nix -w flake.lock direnv exec . {{ command }} -watch-builder: (watch-flake "watchexec -i cmd/server -i public -r go run ./cmd/build --base-url http://localhost:3000") +watch-builder: (watch-flake "watchexec -w cmd/build -w content -w templates -r go run ./cmd/build --base-url http://localhost:3000") nix-build what: nix build .#{{ what }} -watch-server: (watch-flake "watchexec -r go run ./cmd/server") +watch-server: (watch-flake "watchexec -r -i content -i templates go run ./cmd/server") docker-stream system=(arch() + "-linux"): @nix build --print-out-paths .#docker-stream-{{ system }} | sh