This commit is contained in:
GotPPay
2017-10-16 12:36:23 +02:00
parent c570d10a77
commit 8a7f8794cf
10 changed files with 480 additions and 3 deletions

11
backend/node_modules/dotenv/config.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
(function () {
var options = {}
process.argv.forEach(function (val, idx, arr) {
var matches = val.match(/^dotenv_config_(.+)=(.+)/)
if (matches) {
options[matches[1]] = matches[2]
}
})
require('./lib/main').config(options)
})()