# xlytest **Repository Path**: miv2017/xlytest ## Basic Information - **Project Name**: xlytest - **Description**: 训练营测试 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-30 - **Last Updated**: 2025-09-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README fastapi-peewee/ ├── app/ │ ├── main.py # 应用入口 │ ├── config.py # 配置文件 │ ├── database.py # Peewee数据库连接 │ ├── routers/ # 路由层 │ │ └── user_router.py │ ├── models/ # 模型层 │ │ └── user_model.py │ ├── services/ # 业务逻辑层(类似Controller) │ │ └── user_service.py │ ├── static/ # 静态资源 │ │ ├── css/ │ │ └── js/ │ └── utils/ │ ├── security.py # 安全工具 │ └── helpers.py # 辅助函数 ├── migrations/ # Peewee数据库迁移 ├── requirements.txt # 依赖列表 ├── .env # 环境变量 └── start.sh # 启动脚本