From b791b84890427eee00e2521e631c8fb7f16ec0fe Mon Sep 17 00:00:00 2001 From: David Allen Date: Sat, 30 Aug 2025 00:22:58 -0600 Subject: [PATCH] chore: updated README examples --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 1f5c2d1..8e3630b 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,18 @@ makeshift list # list files store in the template directory with a specified host makeshift list --host http://localhost:5050 --path templates + +# list all available plugins +makeshift list plugins + +# list specific plugin (for plugin info, use 'makeshift plugin info` instead) +makeshift list plugins jinja2 + +# list all available profiles +makeshift list profiles + +# list specific profile information +makeshift list profiles default ``` Then, we can start downloading some files or directories (as archives). @@ -64,6 +76,12 @@ makeshift download -p templates --plugins smd,jinja2 --profile compute # do everything in the above example but extract and remove archive makeshift download -p templates --plugins smd,jinja2 --profile compute -xr + +# download a raw plugin +makeshift download plugin jinja2 + +# download a profile +makeshift download profile default ``` > [!NOTE]