wer configure
Configure werkr settings and tool paths.
Usage
wer configure path [flags] Description
The configure command manages werkr's local settings. It configures the
filesystem paths to external binaries used by werkr. By default, werkr looks up
binaries (such as wer, limactl) via PATH.
Use this command to override a binary with an absolute path, which is useful when
running from a macOS application bundle.
Subcommands
| Subcommand | Description |
|---|---|
configure path | Set, display, or clear the filesystem path to a binary used by werkr |
Flags (configure path)
| Flag | Description |
|---|---|
--binary | Binary name (e.g., wer, limactl) |
--path | Absolute path to the binary (empty string to clear the override) |
Examples
# Show all configured binary paths
wer configure path
# Set the path to limactl
wer configure path --binary limactl --path /opt/lima/bin/limactl
# Set the path to the wer binary itself
wer configure path --binary wer --path /Applications/Werkr.app/Contents/MacOS/wer
# Clear a previously set path (revert to PATH lookup)
wer configure path --binary limactl --path ""
# Show a single binary's current setting
wer configure path --binary limactl