This is a Homebrew tap for NovaCove tools. It currently includes:
- Imbued: A toolset for managing secrets in a development environment
# Add the tap
brew tap novacove/in5
# Install imbued
brew install imbuedAfter installation, follow the instructions in the caveats to set up shell integration.
Add to your .bashrc or .bash_profile:
export IMBUED_BIN=$(brew --prefix)/bin/imbued
source $(brew --prefix)/share/imbued/scripts/bash/imbued.shAdd to your .zshrc:
export IMBUED_BIN=$(brew --prefix)/bin/imbued
source $(brew --prefix)/share/imbued/scripts/zsh/imbued.zshAdd to your config.fish:
set -gx IMBUED_BIN (brew --prefix)/bin/imbued
source (brew --prefix)/share/imbued/scripts/fish/imbued.fishTo run Imbued in server mode, you can install it as a launchd service:
brew services start imbuedWhen using server mode, also set the socket path in your shell configuration:
# For Bash/Zsh
export IMBUED_SOCKET=$HOME/.imbued/imbued.sock
# For Fish
set -gx IMBUED_SOCKET $HOME/.imbued/imbued.sockMIT