mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-07-17 23:14:33 +00:00
Adding sign with google in NPM
This commit is contained in:
20
node_modules/dotenv/lib/env-options.js
generated
vendored
Normal file
20
node_modules/dotenv/lib/env-options.js
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// ../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
|
||||
}
|
||||
|
||||
if (process.env.DOTENV_CONFIG_OVERRIDE != null) {
|
||||
options.override = process.env.DOTENV_CONFIG_OVERRIDE
|
||||
}
|
||||
|
||||
module.exports = options
|
Reference in New Issue
Block a user