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.
139 lines
4.3 KiB
139 lines
4.3 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(['b', 'backups'], '后端数据库备份恢复接口地址');
|
|
args.option(['s', 'kubesphere'], 'kubesphere地址');
|
|
args.option(['d', 'dbconfig'], '后台同步数据库host示例:postgres/example/10.8.30.160/30432 格式:用户名/密码/host/port');
|
|
|
|
const flags = args.parse(process.argv);
|
|
|
|
const DB = process.env.GDRC_DB || flags.pg;
|
|
|
|
// 七牛云存储参数
|
|
const QINIU_DOMAIN_QNDMN_RESOURCE = process.env.ANXINCLOUD_QINIU_DOMAIN_QNDMN_RESOURCE || flags.qndmn;
|
|
const QINIU_BUCKET_RESOURCE = process.env.ANXINCLOUD_QINIU_BUCKET_RESOURCE || flags.qnbkt;
|
|
const QINIU_AK = process.env.ANXINCLOUD_QINIU_ACCESSKEY || flags.qnak;
|
|
const QINIU_SK = process.env.ANXINCLOUD_QINIU_SECRETKEY || flags.qnsk;
|
|
|
|
const BACKUPS_URL = process.env.BACKUPS_URL || flags.backups;
|
|
const KUBESPHERE_URL = process.env.KUBESPHERE_URL || flags.kubesphere;
|
|
const DATABASE_CONFIG = process.env.DATABASE_HOST || flags.dbconfig;//同步数据库配置
|
|
|
|
if (!DB || !BACKUPS_URL || !KUBESPHERE_URL || !DATABASE_CONFIG) {
|
|
console.log('缺少启动参数,异常退出');
|
|
args.showHelp();
|
|
process.exit(-1);
|
|
}
|
|
|
|
const product = {
|
|
port: flags.port || 8080,
|
|
staticDirs: ['static'],
|
|
mws: [
|
|
{
|
|
entry: require('@fs/attachment').entry,
|
|
opts: {
|
|
qiniu: {
|
|
domain: QINIU_DOMAIN_QNDMN_RESOURCE,
|
|
bucket: QINIU_BUCKET_RESOURCE,
|
|
accessKey: QINIU_AK,
|
|
secretKey: QINIU_SK
|
|
},
|
|
maxSize: 104857600, // 100M
|
|
}
|
|
}, {
|
|
entry: require('./app').entry,
|
|
opts: {
|
|
dev,
|
|
exclude: [
|
|
// "*"
|
|
], // 不做认证的路由,也可以使用 exclude: ["*"] 跳过所有路由
|
|
|
|
sms: {
|
|
///阿里云-安心云
|
|
accessKey: 'LTAI5tAFdjz7j38aNF2C9Qe8',
|
|
accessSecret: '1trYkmiqfBtvZL6BxkNH2uQcQQPs0S'
|
|
},
|
|
email: {
|
|
enabled: true,
|
|
host: 'smtp.exmail.qq.com',
|
|
port: 465,
|
|
sender: {
|
|
name: '政务数据资源中心',
|
|
address: 'fsiot@free-sun.com.cn',
|
|
password: 'Fs2689'
|
|
}
|
|
},
|
|
pssaRequest: [],
|
|
backupsUrl: BACKUPS_URL,
|
|
k8s: KUBESPHERE_URL,
|
|
dbConfig: DATABASE_CONFIG,
|
|
|
|
}
|
|
}
|
|
],
|
|
dc: {
|
|
url: 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;
|
|
|