This commit is contained in:
xiaopeng 2025-03-31 22:30:30 +08:00
parent 943b8f026d
commit 68f8b7202f
4 changed files with 5 additions and 11 deletions

View File

@ -10,7 +10,7 @@ import { availablePort } from '../comm/port';
export default { export default {
// 确保每个项目唯一,项目首次启动会自动生成 // 确保每个项目唯一,项目首次启动会自动生成
keys: '142f85f6-0868-4266-b230-fd05fed4e18c', keys: 'cool-admin-keys-xxxxxx',
koa: { koa: {
port: availablePort(8001), port: availablePort(8001),
}, },
@ -64,12 +64,6 @@ export default {
// }, // },
// }, // },
cool: { cool: {
redis: {
host: '127.0.0.1',
port: 6379,
password: '',
db: 0,
},
// 已经插件化,本地文件上传查看 plugin/config.ts其他云存储查看对应插件的使用 // 已经插件化,本地文件上传查看 plugin/config.ts其他云存储查看对应插件的使用
file: {}, file: {},
// 是否开启多租户 // 是否开启多租户

View File

@ -18,7 +18,7 @@ import * as LocalConfig from './config/config.local';
import * as ProdConfig from './config/config.prod'; import * as ProdConfig from './config/config.prod';
import * as cool from '@cool-midway/core'; import * as cool from '@cool-midway/core';
import * as upload from '@midwayjs/upload'; import * as upload from '@midwayjs/upload';
import * as task from '@cool-midway/task'; // import * as task from '@cool-midway/task';
// import * as rpc from '@cool-midway/rpc'; // import * as rpc from '@cool-midway/rpc';
@Configuration({ @Configuration({
@ -42,7 +42,7 @@ import * as task from '@cool-midway/task';
// rpc 微服务 远程调用 // rpc 微服务 远程调用
// rpc, // rpc,
// 任务与队列 // 任务与队列
task, // task,
{ {
component: info, component: info,
enabledEnvironment: ['local', 'prod'], enabledEnvironment: ['local', 'prod'],

View File

@ -27,7 +27,7 @@ export default () => {
// 单点登录 // 单点登录
sso: false, sso: false,
// 注意: 最好重新修改,防止破解 // 注意: 最好重新修改,防止破解
secret: 'b621502b-15aa-44e8-95bb-03710c7271f9', secret: 'cool-admin-xxxxxx',
// token // token
token: { token: {
// 2小时过期需要用刷新token // 2小时过期需要用刷新token

View File

@ -28,7 +28,7 @@ export default () => {
// 刷新token 过期时间,单位秒 // 刷新token 过期时间,单位秒
refreshExpire: 60 * 60 * 24 * 30, refreshExpire: 60 * 60 * 24 * 30,
// jwt 秘钥 // jwt 秘钥
secret: '0ffb82cd-c4ec-47d0-8d4c-fe4f5e5d7713x', secret: 'cool-app-xxxxxx',
}, },
} as ModuleConfig; } as ModuleConfig;
}; };