ember-cli-dotenv
ember-cli-dotenv copied to clipboard
Dotenv for your ember app through ember-cli
`process.env` doesnt have any of our dotenv vars in `.ember-cli.js` that we have in the rest of the ember app. `.ember-cli.js` is executed before our `config/dotenv.js`. We were able to...
I am using this addon with ember-cli-deploy's development workflow. I have 3 different env files for different environments: `.env.deploy.${env}`. Here's the `config/dotenv.js` contents: ``` /* eslint-env node */ module.exports =...
Is there a way to use `failOnMissingKey` option in a CI build so it takes `process.env` variables into account? If not, that could be an option like `systemvars` in [dotenv-webpack...
Hi! This is a follow-up to #30. I use multiple dotenv files -- one per deploy target. My `config/dotenv.js` has logic to select a specific dotenv file provided in a...
Hi! I find splitting dotenv files by environment to be very restricting. I've seen whole blog posts arguing that it's a bad practice. Instead, I organize my dotenv files by...
It would be nice to be able to have ember-cli watch the .env file for changes and then reload the server.
Bumps [webpack](https://github.com/webpack/webpack) from 5.89.0 to 5.94.0. Release notes Sourced from webpack's releases. v5.94.0 Bug Fixes Added runtime condition for harmony reexport checked Handle properly data/http/https protocols in source maps Make...