config.local.js 265 B

1234567891011121314151617
  1. 'use strict';
  2. module.exports = () => {
  3. const config = (exports = {});
  4. config.logger = {
  5. level: 'DEBUG',
  6. consoleLevel: 'DEBUG',
  7. };
  8. // mongoose config
  9. config.mongoose = {
  10. url: 'mongodb://172.17.116.100:27017/smart',
  11. };
  12. return config;
  13. };