# Build context 排除（加速 docker build，减少镜像层大小）

# 构建产物（避免被复制进 builder stage）
/target/

# 运行时数据（绝不能进镜像）
/data/
!/data/.gitkeep

# 配置（操作员在主机上编辑，不进镜像）
/config/

# 仓库元数据
.git/
.gitignore
.gitattributes

# IDE / 编辑器
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db

# 本地文档与计划副本
CLAUDE.md
README.md
/lexical-meandering-lighthouse.md

# docker / 部署相关自身（不应递归进镜像）
Dockerfile
docker-compose.yml
.dockerignore
.env
.env.local
*.log
logs/

# 测试残留
tests/
target/
**/*.rs.bk

# node_modules / 临时（项目本无，但留作保险）
node_modules/
.cache/