'use strict'; module.exports = () => { const config = (exports = {}); config.logger = { level: 'DEBUG', consoleLevel: 'DEBUG', }; // mongoose config config.mongoose = { url: 'mongodb://172.17.116.100:27017/smart', }; return config; };