Logo

Installing EnvVault on macOS

EnvVault can be installed on macOS using Homebrew (recommended) or through manual installation. Follow the guide below for your preferred installation method.

Installing via Homebrew

Install EnvVault using Homebrew with a single command:

brew tap EnvVault/homebrew-envvault
brew install envvault

To upgrade EnvVault to the latest version:

brew upgrade envvault

Verifying the Installation

Verify the installation by checking the version:

envv --version

Test the installation by logging in with an API key from the dashboard:

envv login --token <YOUR_API_KEY>

envvault is also accepted as an alias for envv.

Troubleshooting

Common Issues and Solutions

Permission Denied

If you encounter permission issues during installation:

sudo chown $(whoami) /usr/local/bin/envvault

Command Not Found

If the terminal cannot find the envv command, ensure /usr/local/bin is in your PATH:

echo 'export PATH="/usr/local/bin:$PATH"'>> ~/.zshrc
source ~/.zshrc

SSL Certificate Issues

If you encounter SSL certificate errors, update your system certificates:

brew upgrade ca-certificates