Просмотр исходного кода

📝 docs(project): 精简项目文档并修复数据库连接命令

- 移除了Development Commands、Architecture Overview、Development Patterns等章节
- 修复MySQL连接命令中的参数错误,将"-U"改为小写"-u"
- 保留核心项目标准和Claude使用指南内容
yourname 3 месяцев назад
Родитель
Сommit
f9e0a22ab3
1 измененных файлов с 1 добавлено и 84 удалено
  1. 1 84
      CLAUDE.md

+ 1 - 84
CLAUDE.md

@@ -11,89 +11,6 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
 - 所有服务使用默认参数连接,正式环境参数相同
 - 默认开放8080端口供外网访问
 
-## Development Commands
-
-**Build and Run:**
-- `pnpm run dev` - Start development server on port 8080
-- `pnpm run build` - Build both client and server
-- `pnpm run build:client` - Build client only
-- `pnpm run build:server` - Build server only
-- `pnpm start` - Start production server
-
-**Database:**
-- MySQL database runs on localhost:3306 (default credentials: root/empty)
-- Redis runs on localhost:6379
-- MinIO runs on localhost:9000/9001 (credentials: minioadmin/minioadmin)
-- Use `docker-compose up` to start all services
-
-## Architecture Overview
-
-**Frontend (src/client/):**
-- React 19 + TypeScript + Vite
-- Two main sections: `admin/` and `home/`
-- Uses Radix UI components and Tailwind CSS
-- React Router for navigation
-- React Hook Form for forms
-- TanStack Query for API calls
-
-**Backend (src/server/):**
-- Hono.js framework with OpenAPI support
-- TypeORM with MySQL database
-- Modular structure under `src/server/modules/`
-- JWT authentication
-- File storage with MinIO integration
-
-**Key Modules:**
-- `users/` - User management and authentication
-- `files/` - File upload/download functionality
-- `payments/` - Payment processing
-- `membership/` - Membership plans
-- `templates/` - Document templates
-- `documents/` - Document processing (Word merge feature)
-
-**API Structure:**
-- OpenAPI documentation available at `/doc`
-- API routes defined in `src/server/api/`
-- Client API calls in `src/client/api.ts`
-
-## Development Patterns
-
-**Form Validation:**
-- Frontend uses React Hook Form with Zod validation
-- Backend uses Zod with `z.coerce` for type conversion
-- Always use `dayjs` objects instead of native Date objects
-
-**Database:**
-- TypeORM entities with decorators
-- Migrations in `src/server/migrations/`
-- Environment variables for database configuration
-
-**File Handling:**
-- MinIO integration for file storage
-- File upload/download utilities
-- Document processing with docxtemplater and mammoth
-
-## Common Issues & Solutions
-
-1. **Date validation errors**: Use `dayjs()` instead of `new Date()`
-2. **OpenAPI path parameters**: Use `{id}` format instead of `:id`
-3. **Type coercion**: Use `z.coerce.number()` and `z.coerce.boolean()` for URL params
-4. **Form validation mismatches**: Ensure frontend and backend validation rules match
-
-## Environment Setup
-
-Required environment variables:
-- `DB_HOST`, `DB_PORT`, `DB_USERNAME`, `DB_PASSWORD`, `DB_DATABASE`
-- Database defaults to localhost:3306 with root/empty credentials
-- MinIO defaults to localhost:9000 with minioadmin/minioadmin
-
-## Roo Framework
-
-The project uses Roo framework for code generation and validation:
-- Commands in `.roo/commands/`
-- API-client validation rules
-- Entity-field mapping checks
-
 ## Project Standards & Rules
 - @.roo/rules/01-general.md - 通用开发规范
 - @.roo/rules/02-typescript.md - TypeScript规范
@@ -123,7 +40,7 @@ The project uses Roo framework for code generation and validation:
 
 ## Claude Code
 - use pnpm
-- 数据库在同一容器组的另一个容器中,需要运行 mysql -h 127.0.0.1 -U root 来访问
+- 数据库在同一容器组的另一个容器中,需要运行 mysql -h 127.0.0.1 -u root 来访问
 - vitest中,只有console.debug会显示,其他的都屏蔽了
 - vitest中,用import 来配合 vi.mocked,而不是require
 - e2e测试平常只运行 pnpm test:e2e:chromium 就行