四好公路
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
2.9 KiB

2 years ago
/**
* Created by rain on 2016/1/25.
*/
'use strict';
/*jslint node:true*/
const path = require('path');
/*这种以CommonJS的同步形式去引入其它模块的方式代码更加简洁:获取组件*/
const os = require('os');
const moment = require('moment');
const args = require('args');
const dev = process.env.NODE_ENV == 'development';
dev && console.log('\x1B[33m%s\x1b[0m', '请遵循并及时更新 readme.md,维护良好的开发环境,媛猿有责');
// // 启动参数
args.option(['p', 'port'], '启动端口');
args.option(['u', 'api-url'], 'webapi的URL');
2 years ago
args.option('apiUrl', '可外网访问的 webapi 的URL');
2 years ago
args.option(['r', 'report-node'], '报表进程地址');
args.option('qndmn', '七牛');
2 years ago
const flags = args.parse(process.argv);
2 years ago
const FS_UNIAPP_API = process.env.FS_UNIAPP_API || flags.apiUrl;
2 years ago
const QINIU_DOMAIN_QNDMN_RESOURCE = process.env.ANXINCLOUD_QINIU_DOMAIN_QNDMN_RESOURCE || flags.qndmn;
2 years ago
const API_URL = process.env.API_URL || flags.apiUrl;
2 years ago
if (!FS_UNIAPP_API) {
console.log('缺少启动参数,异常退出');
args.showHelp();
process.exit(-1);
}
const product = {
port: flags.port || 8080,
staticDirs: [path.join(__dirname, './client')],
mws: [{
entry: require('./middlewares/proxy').entry,
opts: {
host: FS_UNIAPP_API,
match: /^\/_api\//,
}
2 years ago
}, {
entry: require('./middlewares/proxy').entry,
opts: {
host: QINIU_DOMAIN_QNDMN_RESOURCE,
match: /^\/_file-server\//,
}
2 years ago
}, {
2 years ago
entry: require('./middlewares/proxy').entry,
opts: {
2 years ago
host: 'https://report.amap.com',
match: /^\/_godTrans\//,
2 years ago
}
}, {
entry: require('./routes').entry,
opts: {
2 years ago
apiUrl: API_URL,
qndmn: QINIU_DOMAIN_QNDMN_RESOURCE,
staticRoot: './client',
}
2 years ago
}, {
entry: require('./client').entry,// 静态信息
opts: {}
}],
2 years ago
logger: {
level: 'debug',
json: false,
filename: path.join(__dirname, 'log', 'runtime.txt'),
colorize: true,
maxsize: 1024 * 1024 * 5,
rotationFormat: false,
zippedArchive: true,
maxFiles: 10,
prettyPrint: true,
label: '',
timestamp: () => moment().format('YYYY-MM-DD HH:mm:ss.SSS'),
eol: os.EOL,
tailable: true,
depth: null,
showLevel: true,
maxRetries: 1
}
};
let config;
if (dev) {
config = {
port: product.port,
staticDirs: product.staticDirs,
mws: product.mws.concat([
{
entry: require('./middlewares/webpack-dev').entry,
opts: {}
}
]),
logger: product.logger
}
config.logger.filename = path.join(__dirname, 'log', 'development.txt');
} else {
config = product;
}
module.exports = config;//区分开发和发布