Checking Justfiles With repo-review Framework
paultraylor.net/blog/2025/checking-justf...
#Justfile #Python
My old #django packaging post was 2021. I should probably update it with my current version using #uv and #justfile
paultraylor.net/blog/2021/packaging-a-dj...
Justfile for Salt deployments paultraylor.net/blog/2025/justfile-for-s...
#saltstack #justfile
Has anyone ever used `just` instead of `make` as a task runner for a project? If so, how did it work for you? Any feedback?
just.systems/man/en/
#just #make #justfile #makefile #taskrunner
I am still not *quite* ready to put a #justfile in each of my projects (make feels *slightly* better there) but putting one on each of my servers at `~/Justfile` with common server tasks is proving handy ๐
(I would prefer to find a rpm for my distro for just/uv instead of an install script)
I been looking at #taskfile and this is complex. ๐ค The command runner has so many abilities. And verbose too. ๐ซ
I don't think I'll use for myself, but I can see utility for shared tasks.
For me #justfile is enough. Not too complex. Has a #makefile syntax. And NOT #yaml. ๐
taskfile.dev/usage/
$ cat justfile [script("elixir")] hello: IO.puts("Hello!") %{ matrix: %{ platform: ["arm64", "amd64"], } } |> :json.encode() |> IO.puts() $ just hello Hello! {"matrix":{"platform":["arm64","amd64"]}}
I'm getting way too excited about new superpowers of [script]
#justfile #just annotation, Elixir and new built-in JSON support. github.com/casey/just/