direnv
CLILoad and unload environment variables depending on the current directory.
0 views
Installation
Homebrew
brew install direnvLinks
License
MITAI Agent Notes
Auto-load .env files when entering a project directory
When to use
Managing per-project environment variables
Proven Recipes
Allow .envrc in current directory🟢 99% success
direnv allow .Create a basic .envrc🟢 97% success
echo 'export API_KEY=your_key' > .envrc && direnv allowEdit .envrc🟢 98% success
direnv edit .