'use strict'; module.exports = () => { const config = (exports = {}); config.logger = { level: 'DEBUG', consoleLevel: 'DEBUG', }; config.mongoose = { url: 'mongodb://localhost:27017/platform', options: { // user: 'admin', // pass: 'admin', // authSource: 'admin', // useNewUrlParser: true, // useCreateIndex: true, // useUnifiedTopology: true, }, }; config.amqp = { client: { hostname: '127.0.0.1', username: 'visit', password: 'visit', vhost: 'visit', }, app: true, agent: true, }; return config; };