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
103 lines
2.9 KiB
'use strict';
|
|
/*jslint node:true*/
|
|
const path = require('path');
|
|
const os = require('os');
|
|
const moment = require('moment');
|
|
const args = require('args');
|
|
|
|
const dev = process.env.NODE_ENV == 'development';
|
|
|
|
// 启动参数
|
|
args.option(['p', 'port'], '启动端口');
|
|
args.option(['g', 'pg'], 'postgre服务URL');
|
|
args.option(['f', 'fileHost'], '文件中心本地化存储: WebApi 服务器地址(必填), 该服务器提供文件上传Web服务');
|
|
|
|
const flags = args.parse(process.argv);
|
|
|
|
const IOT_VIDEO_ACCESS_DB = process.env.IOT_VIDEO_ACCESS_DB || flags.pg;
|
|
const IOT_VIDEO_ACCESS_LOCAL_SVR_ORIGIN = process.env.IOT_VIDEO_ACCESS_LOCAL_SVR_ORIGIN || flags.fileHost;
|
|
|
|
if (!IOT_VIDEO_ACCESS_DB) {
|
|
console.log('缺少启动参数,异常退出');
|
|
args.showHelp();
|
|
process.exit(-1);
|
|
}
|
|
|
|
const product = {
|
|
port: flags.port || 8080,
|
|
staticDirs: ['static'],
|
|
mws: [
|
|
{
|
|
entry: require('@fs/attachment').entry,
|
|
opts: {
|
|
local: {
|
|
origin: IOT_VIDEO_ACCESS_LOCAL_SVR_ORIGIN || `http://localhost:${flags.port || 8080}`,
|
|
rootPath: 'static',
|
|
childPath: 'upload',
|
|
},
|
|
maxSize: 104857600, // 100M
|
|
}
|
|
}, {
|
|
entry: require('./app').entry,
|
|
opts: {
|
|
exclude: [], // 不做认证的路由,也可以使用 exclude: ["*"] 跳过所有路由
|
|
}
|
|
}
|
|
],
|
|
dc: {
|
|
url: IOT_VIDEO_ACCESS_DB,
|
|
opts: {
|
|
pool: {
|
|
max: 80,
|
|
min: 10,
|
|
idle: 10000
|
|
},
|
|
define: {
|
|
freezeTableName: true, // 固定表名
|
|
timestamps: false // 不含列 "createAt"/"updateAt"/"DeleteAt"
|
|
},
|
|
timezone: '+08:00',
|
|
logging: false
|
|
},
|
|
models: [require('./app').models]
|
|
},
|
|
logger: {
|
|
level: 'info',
|
|
json: false,
|
|
filename: path.join(__dirname, 'log', 'runtime.log'),
|
|
colorize: false,
|
|
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
|
|
}
|
|
};
|
|
|
|
const development = {
|
|
port: product.port,
|
|
staticDirs: product.staticDirs,
|
|
mws: product.mws,
|
|
dc: product.dc,
|
|
logger: product.logger
|
|
};
|
|
|
|
if (dev) {
|
|
// mws
|
|
for (let mw of development.mws) {
|
|
// if (mw.opts.exclude) mw.opts.exclude = ['*']; // 使用 ['*'] 跳过所有路由
|
|
}
|
|
// logger
|
|
development.logger.filename = path.join(__dirname, 'log', 'development.log');
|
|
development.logger.level = 'debug';
|
|
development.dc.opts.logging = console.log;
|
|
}
|
|
|
|
module.exports = dev ? development : product;
|
|
|