-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (55 loc) · 864 Bytes
/
.gitignore
File metadata and controls
62 lines (55 loc) · 864 Bytes
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
*.iml
.gradle
/local.
/desktop/node_modules
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
# IDE files
.idea/
# Keystore files
*.keystore
# Signing properties
signing.properties
/release.keystore
/release
.vscode
# Build output
/desktop/dist
# Database files
/desktop/data
/desktop/.temp
/desktop/tests
desktop/src/data
desktop/.venv310
/desktop/release
/desktop/backend/build/
/desktop/backend/dist/
.venv
/desktop/memory-service/.venv
/desktop/memory-service/__pycache__
__pycache__/
# 忽略所有项目里的 python 环境目录(venv/虚拟环境/bootstrap python等)
**/python-env
**/python-bootstrap
**/.venv*/
**/venv/
**/.venv
# Python 缓存文件
**/__pycache__/
*.py[cod]
*.pyo
.cursor
# Test media files
test.mp4
*.mp4
*.wav
# Desktop docs (local only)
desktop/docs/
**/node_modules
# Environment variables
.env
.env.*