docs: Phase1 里程碑1 实现设计(骨架+数据模型+config 加载)

This commit is contained in:
lhl
2026-08-08 15:16:19 +08:00
commit 56da6c9917
2 changed files with 230 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
# ---- 环境与密钥 ----
.env
.env.*
# ---- 运行时数据 ----
data/
# ---- Python 构建产物 ----
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/
# ---- 测试缓存 ----
.pytest_cache/
.coverage
htmlcov/
# ---- 虚拟环境 ----
.venv/
venv/
# ---- 工具内部操作产物(不入库) ----
conversations/
.aura/
# ---- IDE / 编辑器 ----
.vscode/
.idea/