- 新增 deploy/docker/:Docker 本机模拟部署,含 Dockerfile、docker-compose、deploy.sh 一键脚本 - 新增 deploy/remote/:远程服务器部署,含 SSH 自动上传、重启、回滚脚本 - 新增 deploy/README.md:完整使用手册,含现状分析、落地调整工作清单、命令速查 - 新增 build.sh/start.sh:本地构建和启动脚本(含飞书通知) - 新增前端 .env.docker 环境配置,API 指向测试服务器 - 前端 package.json 新增 build-docker 命令 - 更新 .gitignore:排除 IDE 配置、SQL 数据、Docker 敏感文件 - 前端 UI 样式优化(多个页面组件) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
1011 B
YAML
36 lines
1011 B
YAML
server:
|
|
port: 8095
|
|
|
|
redis:
|
|
host: 100.93.0.28
|
|
port: 6379
|
|
password: kaixinjiuhao
|
|
timeout: 30000
|
|
pool:
|
|
max-total: 200
|
|
max-wait: -1
|
|
max-idle: 8
|
|
min-idle: 1
|
|
timeout: 30000
|
|
|
|
spring:
|
|
datasource:
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
|
db1:
|
|
url: jdbc:mysql://100.93.0.28:3306/xiaoqu_comples_d?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true&allowPublicKeyRetrieval=true
|
|
username: root
|
|
password: kaixinjiuhao
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
db2:
|
|
url: jdbc:mysql://100.93.0.28:3306/xiaoqu_intellectual_d?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true&allowPublicKeyRetrieval=true
|
|
username: root
|
|
password: kaixinjiuhao
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
|
|
xxl:
|
|
job:
|
|
admin:
|
|
addresses: ""
|
|
executor:
|
|
appname: xiaoqu-intellectual-task
|