- 新增 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
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
server:
|
|
port: 8097
|
|
|
|
redis:
|
|
host: host.docker.internal
|
|
port: 6379
|
|
password: kaixinjiuhao
|
|
|
|
spring:
|
|
mqtt:
|
|
username: intellectual
|
|
password: xiaoqu2022
|
|
host-url: tcp://mqtt:1883
|
|
client-id: xiaoqu-intellectual-task-docker
|
|
timeout: 1000
|
|
keepalive: 100
|
|
datasource:
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
|
db1:
|
|
url: jdbc:mysql://host.docker.internal: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://host.docker.internal: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
|