2024-02-24 15:24:57 +03:00
|
|
|
# List all the just commands
|
2023-07-20 01:33:15 +03:00
|
|
|
default:
|
|
|
|
@just --list
|
|
|
|
|
|
|
|
# Run example
|
|
|
|
ex:
|
|
|
|
cd ./example && nix run . --override-input services-flake ..
|
|
|
|
|
|
|
|
# Auto-format the project tree
|
|
|
|
fmt:
|
|
|
|
treefmt
|
2023-08-23 20:17:20 +03:00
|
|
|
|
2024-02-19 08:42:43 +03:00
|
|
|
# Run native tests for all the services
|
|
|
|
test-all:
|
2023-08-23 20:17:20 +03:00
|
|
|
nix flake check test/ --override-input services-flake . -L
|
2024-02-19 08:42:43 +03:00
|
|
|
|
|
|
|
# `nix flake check` doesn't support individual checks: https://github.com/NixOS/nix/issues/8881
|
|
|
|
# Run native test for a specific service
|
|
|
|
test service:
|
|
|
|
nix build ./test#checks.$(nix eval --impure --expr "builtins.currentSystem").{{service}} --override-input services-flake . -L
|
2024-02-24 15:24:57 +03:00
|
|
|
|
|
|
|
# Run doc server with hot-reload
|
|
|
|
doc:
|
|
|
|
cd ./doc && nix run
|
|
|
|
|
|
|
|
# Run service whose configuration is defined in `<service>_test.nix`
|
|
|
|
run service:
|
|
|
|
cd test && nix run .#{{service}} --override-input services-flake ../
|