|
|
@ -26,6 +26,15 @@ winston.add(new winston.transports.Console({
|
|
|
|
),
|
|
|
|
),
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const configJSON = fs.readFileSync(path.join(__dirname, '../../config.json'), 'utf-8');
|
|
|
|
|
|
|
|
console.log('configJSON', configJSON);
|
|
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
|
|
console.error(err.stack);
|
|
|
|
|
|
|
|
throw err;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nconf.file({ file: path.join(__dirname, '../../config.json') });
|
|
|
|
nconf.file({ file: path.join(__dirname, '../../config.json') });
|
|
|
|
nconf.defaults({
|
|
|
|
nconf.defaults({
|
|
|
|
base_dir: path.join(__dirname, '../..'),
|
|
|
|
base_dir: path.join(__dirname, '../..'),
|
|
|
|