GithubHelp home page GithubHelp logo

Comments (5)

lolmaus avatar lolmaus commented on July 19, 2024 2

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);
}
}
});

from ember-cli-dotenv.

ntodd avatar ntodd commented on July 19, 2024 1

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.

from ember-cli-dotenv.

jasonmit avatar jasonmit commented on July 19, 2024

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

from ember-cli-dotenv.

jasonmit avatar jasonmit commented on July 19, 2024

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

from ember-cli-dotenv.

xtagon avatar xtagon commented on July 19, 2024

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.

from ember-cli-dotenv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.