mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
19 lines
398 B
JavaScript
Vendored
19 lines
398 B
JavaScript
Vendored
/* @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
|