1234567891011121314151617181920 |
- 'use strict';
- module.exports = () => {
- const config = exports = {};
- // config.logger = {
- // level: 'INFO',
- // allowDebugAtProd: true,
- // };
- config.dbServerPort = '6101';
- config.dbServerIp = '127.0.0.1';
- config.export = {
- root_path: 'D:\\free\\workspace\\server\\service-file\\upload\\',
- domain: 'http://127.0.0.1',
- };
- config.import = {
- domain: 'http://127.0.0.1',
- root_path: 'D:\\free\\workspace\\server\\service-file\\upload\\',
- };
- return config;
- };
|