dotenv-cli
dotenv-cli copied to clipboard
A cli to load dotenv files
Hello, the override system is now available is dotenv (https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md#1410-2022-01-17) It would be nice to get it in dotenv-cli Have a nice day!
- Updates `dotenv` to [14.2.0](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md#1420-2022-01-17) to get the `override` config. - Updates `dotenv-expand` to [6.0.1](https://github.com/motdotla/dotenv-expand/blob/master/CHANGELOG.md#601-2022-01-17) to take advantage of some new features such as https://github.com/motdotla/dotenv-expand/pull/39 - closes #62
My use case was to allows for wildcards with the [debug](https://npmjs.org/package/debug) module. E.g. `dotenv -v DEBUG=myLib:* node testMyLib.js`. Probably has other utilities too, of course. Going off of #65, I...
When using cascading env variables, you might end up with a lot of `.env` files. It is then common to group the `.env` files in a folder. Would it be...
Consider this example with two env files, `.local.env` and `.env`: ```bash node cli.js -e .local.env -e .env -- printenv ``` where the files are like this: ```bash # .local.env TEST_PASS=some\$pass...
fixes https://github.com/entropitor/dotenv-cli/issues/97 I did this by hand in the github editor, so I'm hoping that automated tests will tell me if I did something wrong! I haven't tried this manually/am...
Hi - I like this library a lot, one small request. In build-scripts/any code or documentation that's checked in to source control, our team have a loose convention to always...
Just coming in here to say that we would be able to load in the new .env.vault standard if the dotenv version was bumped up to 16.1.4. Currently we are...
When using `dotenv -- `, if some command has colored output, dotenv will remove it. I guess that the issue exists because of `cross-spawn` that is used to spawn the...
The [Node.js `NODE_OPTIONS` environment variable](https://nodejs.org/api/cli.html#node_optionsoptions) allows setting multiple options in a space-separated list, and sometimes it is necessary to set multiple options. For example ``` NODE_OPTIONS='--no-experimental-fetch --trace-warnings' ``` However the...