mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
18 lines
422 B
JavaScript
Vendored
18 lines
422 B
JavaScript
Vendored
/* @flow */
|
|
|
|
// ../config.js accepts options via environment variables
|
|
const options = {}
|
|
|
|
if (process.env.DOTENV_CONFIG_ENCODING != null) {
|
|
options.encoding = process.env.DOTENV_CONFIG_ENCODING
|
|
}
|
|
|
|
if (process.env.DOTENV_CONFIG_PATH != null) {
|
|
options.path = process.env.DOTENV_CONFIG_PATH
|
|
}
|
|
|
|
if (process.env.DOTENV_CONFIG_DEBUG != null) {
|
|
options.debug = process.env.DOTENV_CONFIG_DEBUG
|
|
}
|
|
|
|
module.exports = options
|