-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
49 lines (38 loc) · 879 Bytes
/
.gitignore
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
# macOS system file, should not be tracked
.DS_Store
# Windows system files, should not be tracked
Thumbs.db
ehthumbs.db
Desktop.ini
# Python bytecode cache directory, not needed in version control
__pycache__/
*.py[cod] # Python cache files
# Ignore specific virtual environment directories
env/
venv/
ENV/
VENV/
# Local virtualenv
.local/
# Local iconset directory, should not be tracked
serpent.iconset/
# Ignore database files created by the application
*.db
*.sqlite3
# GUI-specific Python bytecode cache, not needed in version control
gui/__pycache__/
# Ignore Docker build files and logs
*.log
docker-compose.override.yml
.dockerignore
# Ignore specific editor files and directories
.vscode/
.idea/
# Ignore OS-specific files
*.swp
.swp
# Ignore Python egg and distribution files
*.egg
*.egg-info/
dist/
build/