You have environment variables that you want to use in your project, and don't want to manually export them (and expose them in your shell history).
So you create a local (git ignoreD!)
So you create a local (git ignoreD!)
.env file that you wish to load into your BASH or ZSH shell session, that looks like so:MY_SECRET="super-secret-value"
MY_OTHER_SECRET="other-secret-value"
You want a simple script which will load these variables into your shell session, and you don't want to install any dependencies to do this (e.g., dotenv-cli.
