2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-02-22 22:28:04 +00:00

19 lines
422 B
JavaScript
Raw Normal View History

2019-05-08 12:19:12 +01:00
/* @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