'use strict'; module.exports = () => { const config = exports = {}; config.logger = { // level: 'DEBUG', // consoleLevel: 'DEBUG', }; // mongoose config config.mongoose = { url: 'mongodb://127.0.0.1:27018/smart', }; // mq config config.amqp = { client: { hostname: '192.168.1.190' } }; return config; };