Great tools: Direnv
I use a lot of different tools to automate steps and make my life easier when developing apps or working on my laptop in general. One of those tools is direnv It’s a neat little tool written in golang that hooks into your shell and sets up environment variables from a file. Similar to how dotenv works, except it can do much more interesting things, like calling shell commands. It also automatically loads and unloads settings as you change directories in your shell. It looks for a file called .envrc in the folder and if it has been added to the allow list it will run through the commands there and merge it into the running shell. ...