|
|
|
|
|
by kstrauser
660 days ago
|
|
Same. I think a lot of it comes down to the language you’re using. If I’m doing something in Python or Rust, poetry or cargo hand all the magic I would have encoded in a Makefile for a C project years ago. Today I have a justfile with a target like: build:
cargo build
and a bunch of other targets for testing, running it, etc. |
|