- docs/*.txt 加入 gitignore, 测试结果不入库 - 移除已跟踪的 3 个测试文件(保留在工作区) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
435 B
Plaintext
40 lines
435 B
Plaintext
# 依赖与产物
|
|
node_modules/
|
|
dist/
|
|
*.local
|
|
.DS_Store
|
|
|
|
# Go
|
|
server/bin/
|
|
server/data/
|
|
scripts/mockupstream/bin/
|
|
|
|
# TypeScript 增量构建产物
|
|
*.tsbuildinfo
|
|
web/vite.config.js
|
|
web/vite.config.d.ts
|
|
web/node_modules/.tmp/
|
|
|
|
# 环境与密钥
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# 数据库
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# 日志与临时
|
|
*.log
|
|
/tmp/
|
|
nohup.out
|
|
|
|
# 编辑器
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# 测试结果记录(参考用, 不入库)
|
|
docs/*.txt
|