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 envvaultTo upgrade EnvVault to the latest version:
brew upgrade envvaultVerifying the Installation
Verify the installation by checking the version:
envv --versionTest 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/envvaultCommand 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 ~/.zshrcSSL Certificate Issues
If you encounter SSL certificate errors, update your system certificates:
brew upgrade ca-certificatesFor additional help or to report installation issues, visit ourGitHub issues page.