# fast_template **Repository Path**: what1119/fast_template ## Basic Information - **Project Name**: fast_template - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-19 - **Last Updated**: 2025-07-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README app/api/:路由分发,建议按版本和业务拆分。 app/core/:全局配置、鉴权、依赖注入等。 app/crud/:数据库操作层,封装所有与数据库交互的操作。 app/db/:包括数据库连接会话、基类、迁移等。 app/models/:ORM模型,定义数据库表结构。 app/schemas/:Pydantic 模型,用于数据校验及序列化。 app/services/:业务逻辑实现,将路由和CRUD解耦。 app/utils/:通用工具函数。 app/main.py:应用入口,创建 FastAPI 实例并引入路由。 tests/:测试代码,建议模块对应分层。 alembic/:数据库迁移工具相关内容。