mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-16 20:55:00 +02:00
12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
(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)
|
|
})()
|