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