Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use dotenv's silent option rather than using your own exists checking #17

Open
devinus opened this issue Oct 12, 2015 · 5 comments
Open

Comments

@devinus
Copy link

devinus commented Oct 12, 2015

No description provided.

@jasonmit
Copy link
Collaborator

@devinus can you add more information? Unclear what you mean by exists checking.

@lolmaus
Copy link

lolmaus commented Mar 23, 2018

I would like some of my env vars to be optional. In config/environment.js I'm providing default values for non-existing variables.

Yet, whenever I run any ember command in the terminal, I see this:

[ember-cli-dotenv]: Required environment variable 'COR_DEPLOY_TARGET' is missing.
[ember-cli-dotenv]: Required environment variable 'COR_ROOT_URL' is missing.

It is very annoying.

To work around this, I have to provide empty env vars in every .env-* file that I have (I'm using per-target env files: local, staging, production) and add logic to treat empty strings as false. 😩

Related piece of code:

let allowedKeys = options.clientAllowedKeys || [];
allowedKeys.forEach(key => {
if (loadedConfig.parsed[key] === undefined) {
let errMsg = '[ember-cli-dotenv]: Required environment variable \'' + key + '\' is missing.';
if (options.failOnMissingKey) {
throw new Error(errMsg);
} else {
console.warn(errMsg);
}
}
});

@jasonmit
Copy link
Collaborator

@lolmaus unsure when I'll get around to it, but will happily review any PRs related to solving this.

@ntodd
Copy link

ntodd commented Apr 24, 2018

I agree with @lolmaus that it would be nice to have optional keys. I may have a bit of time to work on this, but there are a few ways this could maybe work:

  1. Add a clientRequiredKeys property. Keys in clientRequiredKeys would be required (fail automatically if missing). Keys in clientAllowedKeys would remain optional with a change to no missing key warnings. At this point, I think failOnMissingKey could be deprecated because you'd have finer-grained settings.

  2. Do option 1, but also add a warnOnMissingKey property with a default of true. This would give a heads up on a missing key in clientAllowedKeys (similar to current behavior), but the warnings could then be suppressed by setting it to false. This would basically keep the current behavior of clientAllowedKeys (optional, with suppressible warning), and give us required keys also.

  3. Just add a suppressMissingKeyWarnings property which defaults to false. If true, it'd just skip the console.warn and all other logic would remain the same. Feels a bit like a bolt-on though.

Maybe someone else has a better idea though.

@xtagon
Copy link

xtagon commented Mar 24, 2020

It would be nice to be able to specify required vs optional keys in different environments. I have some keys that are required in production but not in dev/test.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants