feat: 初始化FastAPI项目基础框架

添加项目基础结构,包括:
- 核心模块(src/main.py)
- 路由模块(users/items)
- 数据库配置和模型
- 日志工具
- 测试用例
- 项目文档和依赖配置
This commit is contained in:
2025-12-15 11:34:24 +08:00
commit 3a5cc50d02
20 changed files with 1157 additions and 0 deletions

11
.env.example Normal file
View File

@@ -0,0 +1,11 @@
# Database configuration
DATABASE_URL=sqlite:///./test.db
# API configuration
API_HOST=localhost
API_PORT=8000
# Security
SECRET_KEY=your-secret-key-here
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30