Files
toolbox/.serena/memories/代码库结构.md
2025-12-18 10:19:11 +08:00

11 lines
502 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 代码库结构
- `app/Http/Controllers/`Web/API 控制器(如 Env/Jira/MessageSync/MessageDispatch 等)。
- `app/Models/`Eloquent 模型(如 `Config`)。
- `database/migrations/`:数据库迁移。
- `database/factories/`Model factories用于测试/seed
- `routes/web.php`页面入口路由admin 框架)。
- `routes/api.php`:后端 API 路由。
- `resources/`:前端资源(通常是 Vue/Vite 入口、视图等)。
- `tests/`:单元/特性测试。