Command runner with make-inspired syntax — use for project-specific recipes in justfiles
just is a command runner. Recipes are defined in a justfile with
make-inspired syntax. Unlike make, every recipe is "phony" — just runs
commands, not build rules.
just searches for justfile (case-insensitive, or .justfile) in the
current directory and upwards, so it works from any subdirectory.
# Comments start with #
variable := 'value'
# Recipe with dependencies