DEV Community

Otavio Monteagudo
Otavio Monteagudo

Posted on • Updated on

One Environment per Project: Manage Directory-Scoped envs with direnv in POSIX Systems

Introduction

One of the more common practices in software projects is to keep certain information separated but accessible from the codebase which uses it. This is usually done with secrets such as passwords or private keys, and also with user or context-specific info pieces. However, management of environment variables can be a pain. The solutions to ease it are many, and there are even built-in ones such as bash_profile.
One solution I've discovered recently and found particularly convenient is direnv, a shell extension which enables definition of environment variables scoped by directory. After installing & hooking the extension to your shell, direnv will execute every time you change directories, looking for an .envrc file in the same or in a superior directory tree level. It will then load the defined variables to the current environment, and unload them if it ceases to detect the same .envrc.
Note that direnv will load the first detected .envrc file, which means that the environment will not inherit values from a .envrc in a parent directory.
It is also important to keep in mind that the environment variables will only be loaded to your shell session once you move to a directory affected by a .envrc file. So if you try something like running a script which loads an environment defined in a directory below your current level, the variables wouldn't be accessible.

Install

Here's the list of supported systems, it is very likely your UNIX-based system's main open source package manager has it available. Suppose we are on Debian, we can install direnv by running the standard external package install command in the terminal:

sudo apt-get install direnv
Enter fullscreen mode Exit fullscreen mode

Setup

After installation, we must hook direnv to our shell. Supposing we are using bash, we can accomplish this by appending this line to the end of our shell startup config file:

echo 'eval "$(direnv hook bash)"' >> ~/.bashrc
Enter fullscreen mode Exit fullscreen mode

Almost the same for ZShell:

echo 'eval "$(direnv hook zsh)"' >> ~/.zshrc
Enter fullscreen mode Exit fullscreen mode

Direnv also supports FISH, TCSH & Elvish. Here are the hooking instructions for each supported shell.

Using direnv

Now we must create an .envrc file for the directory we would like to scope the environment variables to.
Say we create it for the directory ~/project.

echo export FOO='I love Linux!' >> ~/project/.envrc
Enter fullscreen mode Exit fullscreen mode

You will then receive a warning that the current .envrc wasn't read; direnv will block loading .envrc every time it detects changes which were not explicitly allowed. Run:

direnv allow ~/project
Enter fullscreen mode Exit fullscreen mode

and voilà!, you now have a directory-scoped environment.

Remember when I told you that 'direnv will block loading .envrc every time it detects changes which were not explicitly allowed'? This isn't limited to newly introduced changes, the whole file will be unauthorized. So when you

echo export BAR='It is actually called GNU/Linux!' >> ~/project/.envrc
Enter fullscreen mode Exit fullscreen mode

you will have to run direnv allow ~/project again, even to access $FOO. Kinda boring, but biased towards safety.

Every time an .envrc is loaded, direnv will output a message with the file path and also the names of the variables loaded, so you don't need to worry about forgetting your setup. It will also tell you whenever an environment was unloaded.

That's it, pretty straightforward and I hope you find it as convenient as I did.

Top comments (0)