-
Updated
May 20, 2020 - JavaScript
variables
Here are 249 public repositories matching this topic...
-
Updated
May 23, 2020
-
Updated
May 16, 2020 - JavaScript
-
Updated
May 24, 2020 - CSS
-
Updated
Dec 20, 2019 - JavaScript
-
Updated
Nov 26, 2019
I think env-var is brilliant and it is my lightweight 'go-to' solution for (not surprisingly) environment variable reading.
However, one thing I like our node code to do is output what environment variables they are reading, and what values they are using (eg: from process.env or from a supplied default)
It seems a bit pointless putting in code like this every time:
`if (process.env.RETRIES
As mentioned by @franciscolourenco in #32
// vue.config.js
module.exports = {
chainWebpack: config => {
const moduleTypes = ['vue-modules', 'vue', 'normal-modules', 'normal']
moduleTypes.forEach(type =>
config.module
.rule('scss')
.oneOf(type)
.-
Updated
Mar 18, 2019 - JavaScript
-
Updated
Jan 1, 2019 - PHP
-
Updated
Apr 30, 2020 - Python
-
Updated
Apr 30, 2020 - JavaScript
-
Updated
Apr 2, 2020 - PHP
E.g. I want to remove CONSUL_HTTP_TOKEN from
[NUC10 consul-tls-connect (master)] $ envy show --decrypt test
CONSUL_CACERT=consul-agent-ca.pem
CONSUL_CLIENT_CERT=dc1-server-consul-0.pem
CONSUL_CLIENT_KEY=dc1-server-consul-0-key.pem
CONSUL_HTTP_ADDR=https://127.0.0.1:8500
CONSUL_HTTP_SSL=true
CONSUL_HTTP_TOKEN=e7de65c5-16b8-5f4d-0570-77cdde93ea64
CONSUL_PORT=8500
CONSUL_SCHEME=ht-
Updated
May 10, 2020 - Rust
-
Updated
Sep 27, 2018 - PHP
-
Updated
Apr 15, 2020 - JavaScript
-
Updated
May 22, 2020 - HCL
Improve this page
Add a description, image, and links to the variables topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the variables topic, visit your repo's landing page and select "manage topics."
Is dotenv-expand supported? (https://github.com/motdotla/dotenv-expand)
I think not because I have attempted to add this to the env files but it doesn't work.
REACT_APP_APP_VERSION=${npm_package_version}(as per CRA docs:)
https://create-react-app.dev/docs/adding-custom-environment-variables/#expanding-environment-variables-in-env
Happy to raise a PR to add support if someone could poin