Takes the suck out of launching your server with various sets of environment variables
Let's say you want to store development environment variables in dev.env
, production environment variables in
prod.env
, and then somehow use those to launch your server. One common way to launch your server is with the env
command:
env $(< dev.env | xargs) runserver
This is a start, but it's pretty lackluster:
- it overwrites any variables that are already set in your environment
- it doesn't work on windows (and may not work in terminals besides
bash
...I have no idea) - it would be nice avoid wrapping
dev.env
in$(<
| xargs)
- if you want to source multiple files, you have to type even more punctuation
- you can't dynamically construct any values with code
defaultenv
makes this easy:
defaultenv dev.env runserver
defaultenv devenv.js runserver
defaultenv prod.env staging.env -- runserver
defaultenv prod.env deployment.env -- runserver
You can use either dotenv
-style files, .js
modules that export an object, or .json
files to provide environment
variable defaults.
If this is present in the root directory of your project, variables will be loaded from it using
dotenv
unless you provide the --no-dotenv
option.
defaultenv
uses dotenv
to parse each file. Here's an example of what
an env file should look like:
REDIS_HOST=localhost
REDIS_PORT=6379
DB_HOST=localhost
DB_USER=root
DYNAMO_ENDPOINT="http://localhost:8000"
You may use a node .js
script that exports an object where all property values are strings, or a function that will be
called with a small API. This is especially useful if you need to dynamically create default values for environment
variables with arbitrary code. If you need to refer to existing environment variables or defaults applied from prior files,
you are encouraged to use the function form.
var path = require('path')
module.exports = function(env) {
env.setDefaults({
BUILD_DIR: path.resolve(__dirname, '..', 'build'),
REDIS_HOST: 'localhost',
REDIS_PORT: '6379',
})
if (env.get('TARGET')) {
env.setDefault('BUILD_DIR', path.resolve(exports.BUILD_DIR, process.env.TARGET))
}
}
(or)
module.exports = {
BUILD_DIR: path.resolve(__dirname, '..', 'build'),
REDIS_HOST: 'localhost',
REDIS_PORT: '6379',
}
// referring to process.env is discouraged because it will work differently when defaultenv
// is run with the --noExport option.
if (process.env.TARGET) {
module.exports.BUILD_DIR = path.resolve(module.exports.BUILD_DIR, process.env.TARGET)
}
If your .js
file exports a function, it will be called with an object with the following methods:
Gets the value of an environment variable.
Sets the value of an environment variable if it is not already set.
Calls setDefault
for each key
-value
pair in defaults
.
You may use a JSON file that contains an object where all property values are strings:
{
"REDIS_HOST": "localhost",
"REDIS_PORT": "6379",
"DB_HOST": "localhost",
"DB_USER": "root",
"DYNAMO_ENDPOINT": "http://localhost:8000"
}
defaultenv <envfile> <command> [...command args]
Just insert --
between the env files and your command:
defaultenv <envfile1> <envfile2> [...more envfiles] -- <command> [...command args]
- if
FOO
appears in more than one of the env files, the leftmost file in your arguments wins - if
FOO
is already defined in the environmentdefaultenv
gets run with,defaultenv
won't overwrite it - once an environment variable gets set to the empty string,
defaultenv
won't overwrite it
Sometimes it's more convenient to just export a bunch of variables to your terminal session so you can run a bunch of
commands with those variables instead of running each command via defaultenv
.
The -p
or --print
option will make defaultenv
output a bash script that will export the values it loaded from
the envfiles:
> defaultenv -p foo.env
export FOO=foo
So if you wrap this in $( )
it will export them to your terminal session:
> $(defaultenv -p foo.env)
> echo $FOO
foo
Overwrite existing values for environment variables (by default, existing values will be preserved)
This does not currently apply to variables loaded via --dotenv
option.
See Exporting Values
Prevents loading variables from a .env file in the root directory of your project
foo.env
:
FOO=foo
bar.env
:
FOO=hello
BAR=bar
> node -p 'process.env.FOO'
> defaultenv foo.env node -p 'process.env.FOO'
foo
> defaultenv bar.env node -p 'process.env.FOO'
hello
> defaultenv foo.env bar.env -- node -p 'process.env.FOO'
foo
> FOO=test defaultenv foo.env node -p 'process.env.FOO'
test
> defaultenv foo.env bar.env -- node -p 'process.env.FOO + process.env.BAR'
foobar
declare function defaultEnv(files: Array<string>, options: {
force?: boolean,
print?: boolean,
noDotenv?: boolean,
noExport?: boolean,
})
var path = require('path')
var defaultEnv = require('defaultEnv')
var defaults = defaultEnv([path.resolve('foo.js')], {noExport: true})
If true, overwrite existing values for environment variables (by default, existing values will be preserved)
This does not currently apply to variables loaded via --dotenv
option.
See Exporting Values
Unless this is true, also loads variables from a .env file in the root directory of your project
(by using require('dotenv').config()
)
If true, doesn't write to process.env
; only returns the values that would be written.