123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- 'use strict';
- module.exports = appInfo => {
-
- const config = (exports = {});
-
- config.keys = appInfo.name + '_1663725200927_6862';
-
- config.middleware = [];
-
- const userConfig = {
-
- };
-
- config.cluster = {
- listen: {
- port: 11011,
- },
- };
-
- config.routePrefix = '/disk/api';
- config.dirRoot = 'D:\\temp\\temp';
-
- config.checkDrive = 'D:';
-
- config.redLine = 80;
-
- config.sender = {
- user: 'myhope1977@163.com',
- pass: 'RZGYKLOQUTRCNLEO',
- };
-
- config.receiver = '402788946@qq.com';
- return {
- ...config,
- ...userConfig,
- };
- };
|