-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
79 lines (67 loc) · 1.33 KB
/
Copy path.gitignore
File metadata and controls
79 lines (67 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# JavaScript
node_modules/
.pnpm-store/
dist/
.vite/
coverage/
# Python
__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.venv/
# Rust / Tauri
target/
apps/desktop/src-tauri/gen/
# Environment and secrets
.env
.env.*
!.env.example
*.pem
*.key
# Local databases
*.db
*.sqlite3
backend/api/data/
# Runtime data and artifacts
datasets/raw/**
datasets/interim/**
datasets/processed/**
!datasets/raw/.gitkeep
!datasets/interim/.gitkeep
!datasets/processed/.gitkeep
artifacts/
runs/
# Editors / OS
.idea/
.vscode/
.DS_Store
Thumbs.db
# PowerShell 在部分终端里会把模块缓存写进当前工作目录,而不是用户目录
Microsoft/Windows/PowerShell/
# Logs
*.log
# Local project governance (never commit)
/AGENTS.md
/.agents/
# Development-only material (never commit)
/audit-current/
/references/
/tests/
# 审批口径将任意层级的测试目录都视为本地开发材料。
**/tests/
/doc/
/design-qa.md
# Keep /docs/ tracked: it is product documentation, distinct from /doc/.
# Cursor/Agent 本地配置与运行时产物(永久禁止入库)
/.cursor/
/.codex/
# Agent 会话上下文记录(会话-YYYY-MM-DD.md),只在本机续接用
/会话-*.md
# KC-Chat 运行时产物(插件自动生成,请勿入库)
.cursor/mcp.json
.cursor/kc-mcp/
.cursor/kc-mcp-messages/
.cursor/kc-chat-exports/