Commit Graph
8 Commits
Author SHA1 Message Date
lizhuoran 088a088b89 feat: 创建系统设置服务类
- 实现 getGroupedSettings 方法: 按分组获取配置
- 实现 updateSettings 方法: 批量更新配置
- 实现 clearCache 方法: 清除配置缓存
- 集成 Laravel Cache 提升性能(24小时缓存)
2026-03-09 10:08:04 +08:00
lizhuoran ef195d1ea0 feat: 创建工厂类和种子数据
- SystemSettingFactory: 系统设置工厂
- TerminalFactory: 终端工厂
- SopTemplateFactory: SOP模板工厂
- SystemSettingSeeder: 系统设置种子数据
- TerminalSeeder: 终端种子数据
- SopTemplateSeeder: SOP模板种子数据
- 更新 DatabaseSeeder 注册新的种子类
2026-03-09 10:07:49 +08:00
lizhuoran 9d0055138c feat: 创建数据模型
- SystemSetting: 系统设置模型,支持配置管理
- Terminal: 终端模型,支持终端管理
- TerminalKnowledgeBase: 终端知识库关联模型
- TerminalPrompt: 终端提示词模型
- TerminalSyncLog: 终端同步日志模型
- SopTemplate: SOP模板模型
- SopStep: SOP步骤模型
- SopInteractiveTask: SOP交互任务模型
- SopTemplateVersion: SOP模板版本模型

所有模型集成 LogsActivity trait 用于操作日志记录
2026-03-09 10:07:31 +08:00
lizhuoran cedd910728 feat: 创建数据库迁移文件
- 创建 activity_log 相关表(操作日志)
- 创建 system_settings 表(系统设置)
- 创建 terminals 相关表(终端管理)
- 创建 sop_templates 相关表(SOP模板管理)
2026-03-09 10:07:16 +08:00
lizhuoran d1004c023f chore: 添加配置文件
- 添加 activitylog 配置
- 添加 excel 导出配置
- 添加 filament 配置
- 添加 livewire 配置
- 更新数据库配置
2026-03-09 10:06:45 +08:00
lizhuoran 5476417c31 chore: 安装项目依赖包
- 安装 spatie/laravel-activitylog 用于操作日志
- 安装 amidesfahani/filament-monaco-editor 用于代码编辑
- 安装 maatwebsite/excel 用于数据导出
2026-03-09 10:06:25 +08:00
lizhuoranandClaude Sonnet 4.6 7d4448a912 chore: 从版本控制中移除 Docker 镜像 tar 包(体积过大)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-28 15:58:25 +08:00
lizhuoranandClaude Sonnet 4.6 3c206e9e06 feat: 新增 Docker 部署支持、Swoole/Octane 集成及相关优化
- 添加 Dockerfile 与多套 docker-compose 配置(开发/生产环境)
- 集成 Laravel Octane (Swoole) 提升性能
- 新增健康检查、监控脚本及部署文档
- 新增 Docker 镜像离线导入包(MySQL/Redis/Meilisearch)
- 优化文档转换、预览服务及队列任务
- 添加 CreateAdminUser 命令与路由健康检查接口
- 新增 Swoole 队列兼容性测试套件

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-28 15:51:19 +08:00