Files
group_fqcd_jr/.gitignore
T
lzf_0626 484cccc145 记录三个演示文档的移动,并把 .workbuddy/ 加进 .gitignore
## 文档移动(docs/ -> docs/演示用/)

`代码结构与关键逻辑梳理-2026-09-14.md`、`后端接口文档-2026-09-14.md`、
`软件需求文档-2026-09-14.md` 移入 `docs/演示用/`。
git 识别为 **rename**(状态 `R`),三份文档的历史完整保留,不是"删掉再新建"。

## .workbuddy/ 加入 .gitignore

它与文件里已有的 `.agents/`、`skills-lock.json` 属同一类 —— AI 编码助手的工具产物,
不是项目内容。放在同一节下,避免以后 `git add -A` 时误提交。

## 未包含(有意留下)

`docs/23-记忆分层与画像设计.md` 的工作区改动**没有**一并提交:那不是我改的,
也不在这次确认的范围内,留在工作区由作者决定何时提交。
(暂存时被 `git add docs` 一并带上,已 `git restore --staged` 退回。)
2026-09-14 12:09:23 +08:00

58 lines
1.3 KiB
Plaintext

.env
config/jwt/
__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.ruff_cache/
*.egg-info/
.venv/
.worktrees/
.coverage
htmlcov/
coverage.xml
storage/
build/
dist/
*.log
data/milvus/
.idea/
.vscode/
data/promotion_materials/
.codex-step3/
data/offsite_mail/
logs/
# 浏览器拖拽文档的落点:只含 dsh-dropdoc 生成的目录清单,不是项目产物
.dsh-drop/
# 本地临时目录与工具工作区(不提交)
# - .superpowers/ 是 SDD 实施流程的台账与工作区(计划/评审记录)
# - 其余是 pytest / pip 在受限环境下落到仓库根的临时目录
.tmp/
.tmp-pip/
.ptmp/
.pytest-tmp/
.pytest-tmp3/
.pytest-work/
.pytestwork/
.pytest-tmp-*/
tests/.workdir/
pytest-cache-files-*/
.superpowers/
.dsh-tmp-*.py
# 运行期产出的知识库文档(`LocalDocumentStorage` 的落盘位置):
# 由 `KnowledgeIngestService` 在入库时写入、被 `fin_knowledge_meta.minio_path` 引用,
# 属**环境数据**而非源码(换环境重新导入即可),因此不入库。
# 同理:仓库根的 `.workdir/` 是测试脚本的工作目录。
data/
.workdir/
.migration-backups/
# AI 编码助手配置,与本项目无关(2026-09-13 清理误提交)
.agents/
skills-lock.json
# AI 编码助手的会话记忆目录(同上一类:工具产物,不是项目内容)
.workbuddy/