1234567891011121314151617 |
- 'use strict';
- module.exports = () => {
- const config = exports = {};
- // mongoose config
- config.mongoose = {
- url: 'mongodb://localhost:27018/cms',
- };
- config.logger = {
- // level: 'DEBUG',
- // consoleLevel: 'DEBUG',
- };
- return config;
- };
|