wide-midnight-78598
11/13/2024, 4:19 PMpants -adjacent command? As in, I have a command I want to bundle inside of pants, but without running all the pants machinery?proud-dentist-22844
11/13/2024, 4:29 PMinvoke app.
https://github.com/st2sandbox/st2/tree/pants/pants-plugins%2Fdo_invokewide-midnight-78598
11/13/2024, 4:30 PMproud-dentist-22844
11/13/2024, 4:36 PMinvoke is a python app, not a binary. So, it requires adding the requirement to the list of plugins to make pants install it during bootstrapping. Note that I wrote this before plugins could provide a requirements.txt so it could be simplified now.
Then, it uses a goal rule to run a little wrapper script that runs invoke from the pants venv and pass all arguments to it.proud-dentist-22844
11/13/2024, 4:37 PMproud-dentist-22844
11/13/2024, 4:39 PM.pants.d is missing. https://github.com/st2sandbox/st2/blob/pants/invokewide-midnight-78598
11/13/2024, 4:42 PM