-
-
Notifications
You must be signed in to change notification settings - Fork 869
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for preload configuration via env vars (#355)
- Loading branch information
Showing
9 changed files
with
180 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* @flow */ | ||
|
||
// ../config.js accepts options via environment variables | ||
const options = {} | ||
|
||
if (process.env.DOTENV_CONFIG_ENCODING) { | ||
options.encoding = process.env.DOTENV_CONFIG_ENCODING | ||
} | ||
|
||
if (process.env.DOTENV_CONFIG_PATH) { | ||
options.path = process.env.DOTENV_CONFIG_PATH | ||
} | ||
|
||
if (process.env.DOTENV_CONFIG_DEBUG) { | ||
options.debug = process.env.DOTENV_CONFIG_DEBUG | ||
} | ||
|
||
module.exports = options |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* @flow */ | ||
|
||
const t = require('tap') | ||
const decache = require('decache') | ||
|
||
// warm cache | ||
require('../lib/env-options') | ||
|
||
// preserve existing env | ||
const e = process.env.DOTENV_CONFIG_ENCODING | ||
const p = process.env.DOTENV_CONFIG_PATH | ||
const d = process.env.DOTENV_CONFIG_DEBUG | ||
|
||
// get fresh object for each test | ||
function options () { | ||
decache('../lib/env-options.js') | ||
return require('../lib/env-options') | ||
} | ||
|
||
function testOption (envVar, tmpVal, expect) { | ||
delete process.env[envVar] | ||
process.env[envVar] = tmpVal | ||
|
||
t.same(options(), expect) | ||
|
||
delete process.env[envVar] | ||
} | ||
|
||
t.plan(4) | ||
|
||
// returns empty object when no options set in process.env | ||
delete process.env.DOTENV_CONFIG_ENCODING | ||
delete process.env.DOTENV_CONFIG_PATH | ||
delete process.env.DOTENV_CONFIG_DEBUG | ||
|
||
t.same(options(), {}) | ||
|
||
// sets encoding option | ||
testOption('DOTENV_CONFIG_ENCODING', 'base64', { encoding: 'base64' }) | ||
|
||
// sets path option | ||
testOption('DOTENV_CONFIG_PATH', '~/.env.test', { path: '~/.env.test' }) | ||
|
||
// sets debug option | ||
testOption('DOTENV_CONFIG_DEBUG', 'true', { debug: 'true' }) | ||
|
||
// restore existing env | ||
process.env.DOTENV_CONFIG_ENCODING = e | ||
process.env.DOTENV_CONFIG_PATH = p | ||
process.env.DOTENV_CONFIG_DEBUG = d |