18786658152 8152-9

8152-9 a commité dans pgsql sur 159-template-142/file-starter

  • fbb3a69912 Merge remote-tracking branch 'upstream/bmad-method' into pgsql
  • eee0f8c933 Merge remote-tracking branch 'upstream/bmad-method' into bmad-method
  • 8228a062ce 📦 build(docker): add backup directory environment variable - 设置BACKUP_DIR环境变量为/app/backups-prd/,统一备份目录配置
  • 3859c67a72 🔧 chore(config): update .gitignore to include production backups - add backups-prd/ directory to gitignore to exclude production database backups from version control
  • cad4ae1fe5 🔧 chore(release): 重构发布脚本,增强功能和用户体验 - 重命名脚本文件从release_tag.sh为release.sh - 添加标签列表功能(--list/-l),显示最近10个或所有标签 - 实现版本号格式验证,确保语义化版本规范 - 添加工作目录检查和用户确认步骤 - 集成分支检查和最新代码拉取 - 优化输出信息,增加视觉提示和操作指引 - 添加构建进度查看链接自动生成功能 - 增强错误处理和用户交互体验
  • Comparer ces 6 commits »

il y a 1 mois

8152-9 a commité dans pgsql sur 159-template-142/file-starter

  • 088326505c 📦 build(Dockerfile): update Dockerfile with new dependencies and configurations - 设置清华大学镜像源以加速apt包下载 - 安装curl和wget工具 - 添加PostgreSQL 17官方仓库 - 安装PostgreSQL 17客户端工具 - 验证pg_dump版本确保安装正确

il y a 1 mois

8152-9 a commité dans pgsql sur 159-template-142/file-starter

  • 78599c2082 ♻️ refactor(database): 统一布尔类型字段数据库类型 - 将consultation模块的is_guest字段从tinyint改为smallint - 将membership模块的is_active字段从tinyint改为smallint - 将solution-designs模块的is_deleted字段从tinyint改为smallint - 将templates模块的is_free、is_disabled和is_deleted字段从tinyint改为smallint - 保持字段功能和默认值不变,提高数据库类型一致性

il y a 1 mois

8152-9 a commité dans pgsql sur 159-template-142/file-starter

  • 72b3ed817f 🔧 chore(database): switch database type from mysql to postgres - update test database url from mysql to postgresql format - change database type from "mysql" to "postgres" for both test and production environments - update default port from 3306 to 5432 - change default username from "root" to "postgres" - update default database name from "d8dai" to "postgres"

il y a 1 mois

8152-9 a commité dans pgsql sur 159-template-142/file-starter

  • be448bd589 解决合并冲突 - 合并 .claude/settings.local.json 权限配置 - 合并 docs/architecture/testing-strategy.md 测试命令 - 统一测试文件结构迁移 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
  • bd2bbecb6e 📝 docs(testing): 更新测试策略文档以反映新的测试结构 - 添加版本 2.6 记录,标记完成遗留测试文件迁移 - 更新 vitest 配置示例,展示多项目结构配置 - 更新更新日志,记录测试文件迁移完成 ♻️ refactor(tests): 完成测试文件迁移到统一目录结构 - 将文件相关集成测试从 src/server/api/files/__tests__ 迁移到 tests/integration/server/files - 将 MinIO 集成测试从 src/server/__integration_tests__ 迁移到 tests/integration/server/files - 将文件服务单元测试从 src/server/modules/files/__tests__ 迁移到 tests/unit/server/modules/files - 更新测试文件中的导入路径以适应新的目录结构
  • 2e4b2fb0a9 Merge remote-tracking branch 'upstream/bmad-method' into bmad-method
  • 3c6f9813a1 ♻️ refactor(tests): restructure test files and update import paths - move test utility files from src/client/__test_utils__ to tests/utils/client - move test utility files from src/server/__test_utils__ to tests/utils/server - update import paths in test files to use new @/ and ~/ aliases - rename src/test directory to tests/unit and adjust test file locations ✅ test(config): update test configuration - add "~/*" path alias in tsconfig.json pointing to tests directory - simplify alias configuration in vitest.config.ts - update setupFiles path in vitest config to use new tests/utils/setup.ts location - add support for additional bash commands in claude settings 🔧 chore(tests): update test file imports and mocks - update import paths in all test files to use new utility locations - adjust vi.mock paths in test files to correctly reference source modules - fix relative import paths after directory restructuring
  • 2269346def 🔧 chore(config): update .gitignore to exclude NFS temporary files - add .nfs* pattern to ignore NFS temporary files created during file operations
  • Comparer ces 12 commits »

il y a 1 mois

8152-9 a commité dans pgsql sur 159-template-142/file-starter

  • 91aeb5a2c4 📦 build(docker): fix build command in Dockerfile - 添加RUN指令确保pnpm build在容器构建阶段执行 - 解决构建步骤未正确执行的问题
  • 0739e26d3c 👷 ci(release): 优化Docker构建和推送工作流 - 修改标签匹配规则,支持直接使用v*格式的标签 - 增强版本号提取逻辑,兼容多种标签格式 - 添加仓库名处理步骤,将仓库名中的斜杠替换为连字符 - 更新Docker镜像仓库地址为VPC专用地址 - 优化镜像标签格式,包含处理后的仓库名和版本号
  • 78585eccef 🔧 chore(docker): simplify startup command - remove unnecessary 'cd web' from startup command - directly run pnpm run start from project root
  • dca57796fa 📦 build(docker): update Dockerfile configuration - 更新基础镜像为docker.1ms.run/node:20.19.4 - 安装并配置pnpm,设置国内镜像源 - 修改工作目录为/workspace,复制pnpm-lock.yaml文件 - 使用pnpm安装依赖并构建项目 - 暴露端口从23972改为8080 - 更新启动命令为sh -c "cd web && pnpm run start"
  • f6e167e4b1 🔧 chore(docker): rename Dockerfile.release to Dockerfile - simplify docker build process by using standard Dockerfile name - remove need for specifying -f flag during build commands

il y a 1 mois

8152-9 nouvelle branche créée pgsql sur 159-template-142/file-starter

il y a 1 mois

8152-9 a commité dans bmad-method sur 159-template-142/file-starter

  • 91aeb5a2c4 📦 build(docker): fix build command in Dockerfile - 添加RUN指令确保pnpm build在容器构建阶段执行 - 解决构建步骤未正确执行的问题

il y a 1 mois

8152-9 a commité dans bmad-method sur 159-template-142/file-starter

  • 0739e26d3c 👷 ci(release): 优化Docker构建和推送工作流 - 修改标签匹配规则,支持直接使用v*格式的标签 - 增强版本号提取逻辑,兼容多种标签格式 - 添加仓库名处理步骤,将仓库名中的斜杠替换为连字符 - 更新Docker镜像仓库地址为VPC专用地址 - 优化镜像标签格式,包含处理后的仓库名和版本号

il y a 1 mois

8152-9 a commité dans bmad-method sur 159-template-142/file-starter

  • 78585eccef 🔧 chore(docker): simplify startup command - remove unnecessary 'cd web' from startup command - directly run pnpm run start from project root

il y a 1 mois

8152-9 a commité dans bmad-method sur 159-template-142/file-starter

  • dca57796fa 📦 build(docker): update Dockerfile configuration - 更新基础镜像为docker.1ms.run/node:20.19.4 - 安装并配置pnpm,设置国内镜像源 - 修改工作目录为/workspace,复制pnpm-lock.yaml文件 - 使用pnpm安装依赖并构建项目 - 暴露端口从23972改为8080 - 更新启动命令为sh -c "cd web && pnpm run start"

il y a 1 mois

8152-9 a commité dans bmad-method sur 159-template-142/file-starter

  • f6e167e4b1 🔧 chore(docker): rename Dockerfile.release to Dockerfile - simplify docker build process by using standard Dockerfile name - remove need for specifying -f flag during build commands

il y a 1 mois

8152-9 a commité dans bmad-method sur 159-template-142/file-starter

  • 748abd5cac 🔧 chore(ci): 重构发布流程和脚本 - 移除CI工作流中直接通过SSH更新服务器容器的步骤 - 重命名release_tag.sh为release.sh并增强功能 - 添加版本号格式验证和标签列表查看功能 - 增加工作目录检查和最新代码拉取步骤 - 添加构建进度查看链接输出 - 优化用户交互体验和错误处理 🔧 chore(release): 改进发布脚本功能 - 支持通过--list/-l参数查看所有标签 - 显示最近10个标签作为版本参考 - 自动拉取最新代码并创建带v前缀的标签 - 输出更详细的发布流程信息和构建进度链接

il y a 1 mois

8152-9 a commité dans bmad-method sur 177-template-163/mini-starter

  • 82f0639bd3 ✨ feat(docs): 创建集团AI智能进销存系统完整架构文档 - 新增集团级多租户架构文档,支持母子公司数据隔离 - 添加AI服务集成架构,基于DeepSeek API统一接入 - 设计6大核心业务模块:组织架构、供应商、销售、库存、采购、客户管理 - 实现多端支持架构(Web + 小程序),统一API设计 - 完善安全架构、性能优化和部署运维策略 - 更新技术栈文档,统一使用DeepSeek AI服务 - 重构架构文档索引,优化文档组织结构

il y a 1 mois

8152-9 a commité dans bmad-method sur 177-template-163/mini-starter

  • 76e3a8ea57 📝 docs(prd): 重构产品需求文档为集团AI智能进销存系统 - 更新文档标题为"集团管理多公司AI智能进销存应用系统Product Requirements Document (PRD)" - 调整版本信息,创建初始版本1.0(2025-10-20) - 重构项目目标与背景,聚焦集团供应链管理平台建设 - 重新定义功能需求,包括组织架构、供应商、销售、库存、采购等核心业务模块 - 完善非功能需求,明确性能、可扩展性、安全性等指标 - 增加用户界面设计目标,定义核心界面和交互范式 - 细化技术假设,明确基于D8D Starter的技术路线 - 设计Epic和用户故事结构,覆盖基础架构、核心业务、销售库存、采购AI和数据可视化五大模块 - 添加Checklist结果报告和风险评估 - 明确后续UX设计和架构设计工作方向

il y a 1 mois

8152-9 a commité dans bmad-method sur 177-template-163/mini-starter

  • a05d37f123 📝 docs(brief): 更新项目简介为集团管理多公司AI智能进销存应用系统 - 修改项目名称从"shadcn全栈管理后台启动模板"为"集团管理多公司AI智能进销存应用系统" - 更新产品概念,强调基于D8D Starter构建AI驱动的集团化进销存管理系统 - 调整目标市场,聚焦制造业、零售业等需要统一管理供应链的企业集团 - 重写核心功能模块,包括组织架构、供应商、销售、库存和采购管理 - 更新技术架构,增加多租户设计和AI服务集成内容 - 调整项目计划和下一步行动,适应新的业务方向

il y a 1 mois

8152-9 a commité dans bmad-method sur 177-template-163/mini-starter

  • 87058290db 📝 docs(需求文档): add AI intelligent inventory management system development requirements document - create initial version of development requirements document (V1.0) - detail system architecture including parent-subsidiary company management model - define core functional modules: organizational structure, supplier management, sales management, inventory management, procurement management, etc. - specify AI application scenarios: inventory allocation, inventory warning, supplier matching, customer analysis - describe data isolation and permission control mechanisms - outline mobile terminal (H5 and mini-program) requirements - include development cost estimates and system value analysis

il y a 1 mois

8152-9 a commité dans bmad-method sur 172-template-159/file-starter

  • 3d0a91a105 📝 docs(qa): add homepage top navigation QA documentation and update story - 创建首页顶部导航栏QA验收文档009.003-homepage-top-navigation.yml - 更新故事文档,添加详细QA评审结果和改进清单 - 记录导航组件代码质量评估和测试覆盖情况 - 记录品牌名称更新和测试修复的相关变更
  • c165fea916 ✨ feat(home): update brand name and optimize homepage structure - update website brand name from "多八多" to "辰通国学文化" - refactor homepage to use Navigation component instead of inline header - adjust main content padding to fit new navigation layout ✅ test(home): update tests for navigation and homepage changes - update Navigation component test to check new brand name - modify HomePage tests to adapt to component refactoring - improve service card selection logic for better test stability 🔧 chore(settings): add client test command to claude settings - add "Bash(pnpm test:client:*)" to claude allowed commands list - enable client test commands to be executed through claude
  • 2b01c3739b ✨ feat(home): implement homepage top navigation component - create responsive navigation component with 10 menu items - add desktop horizontal layout and mobile hamburger menu with slide animation - implement current page highlighting and smooth scrolling - fix navigation bar to top with scroll background effect ✅ test(navigation): add navigation component test suite - test responsive display on desktop and mobile - verify current page highlighting functionality - test mobile menu open/close behavior and animations - validate sticky positioning and scroll effects 🔧 chore(claude): update claude settings with additional commands - add "Bash(pnpm lint:*)", "Bash(eslint:*)" and "Bash(pnpm build:client:*)" to allowed commands 📝 docs(story): update homepage navigation story status and tasks - change story status from "Draft" to "Ready for Review" - mark all acceptance criteria and tasks as completed - add dev agent record and file list information
  • 802b533a6d 📝 docs(story): update homepage top navigation story details - 细化移动端导航实现要求: - 添加汉堡菜单图标动画(三条线转X) - 添加侧边导航滑入滑出动画(300ms ease-in-out) - 添加点击外部区域关闭侧边导航功能 - 添加ESC键关闭侧边导航功能 - 完善固定导航栏实现细节: - 指定使用 `position: sticky` 而非 `fixed` - 添加 `top: 0`、`z-index: 50` 和半透明背景色要求 - 为所有导航菜单项添加具体路由路径 - 添加版本历史记录,记录本次更新为版本1.1
  • Comparer ces 4 commits »

il y a 2 mois

8152-9 a commité dans bmad-method sur 172-template-159/file-starter

  • 2e0ba995ab 📝 docs(story): add homepage top navigation development story - 创建首页顶部导航栏开发故事文档 - 定义用户需求和验收标准 - 列出开发任务和子任务 - 提供技术栈和组件架构信息 - 包含测试要求和导航菜单项配置
  • 704b09c8f6 📝 docs(prd): add homepage top navigation bar development story - add Story 3: 首页顶部导航栏开发,包含用户故事和验收标准 - update Epic范围验证,将可完成故事数量从3个修改为4个 - 调整后续故事编号,原Story 3变为Story 4
  • 099bd136b9 📝 docs(story): add brand visual update documentation - add QA gate document for homepage brand visual update - update story documentation with QA review results and improvements checklist 🔧 chore(ci): add typecheck command to allowed bash commands - add "Bash(pnpm run typecheck:*)" to allowed commands list
  • c382a762b5 ✨ feat(homepage): implement homepage brand visual update - update platform name from "云存储平台" to "命理咨询平台" - replace logo with bagua icon, update color scheme to dark blue/red gradient - completely replace feature module content with numerology service related information - update footer information to match numerology consulting platform - add unit tests to verify brand elements and visual design correctness ♻️ refactor(test): optimize test file imports - remove unused React import from test files - update test cases to match new homepage content and brand elements 🔧 chore(scripts): update claude settings with additional commands - add "pnpm test:components:*", "pnpm run-tests:*", and "pnpm lint" commands to settings.local.json
  • 7351ab0ad6 📝 docs(story): add homepage brand visual update story for fortune-telling platform - 创建命理咨询平台品牌和视觉设计更新故事文档 - 定义首页视觉设计和品牌内容更新的验收标准 - 规划品牌元素分析、设计和实现的任务分解 - 提供技术栈信息和现有首页组件分析 - 包含命理咨询平台品牌设计建议和兼容性要求
  • Comparer ces 8 commits »

il y a 2 mois

8152-9 a commité dans bmad-method sur 172-template-159/file-starter

  • 4a971c1809 📝 docs(prd): update product requirements document with homepage optimization epic - add version history entry for 2.1 (2025-09-30) - add Epic 009: 首页优化 - 命理咨询平台转换 with goals and success criteria - add user stories for homepage optimization: core service display, brand design update, responsive optimization - update success metrics for homepage optimization with specific targets - create detailed epic documentation for homepage transformation - add specific story details for core service display module development
  • 57e58fa18b 📝 docs(prd): update product requirements document - add Epic 008: 定价和订单管理系统,包含目标、成功标准和用户故事概览 - add Epic 008 相关的关键绩效指标(KPI) - create detailed PRD documents for Epic 005-008: - 命理咨询核心功能开发 - 咨询预约和支付系统 - 内容管理和客户关系系统 - 定价和订单管理系统
  • Comparer ces 2 commits »

il y a 2 mois