const nconf  = require('nconf')
,     path   = require('path')
;

// load file config, process.env, process.argv, values in `config.json`
nconf
     // .argv()
     // .env()
     .file({ file: path.join(__dirname, 'config.json') })

module.exports = nconf

