-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
79 lines (65 loc) · 994 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
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
# Ignore Python compiled files
__pycache__/
*.pyc
*.pyo
myenv
# Ignore Python eggs and wheels
*.egg
*.egg-info/
dist/
build/
*.whl
# Ignore virtual environments
venv/
env/
.env/
.venv/
__env__/
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Ignore data and video files
# data/
# video/
# *.mp4
# *.mov
# *.avi
# *.mkv
# *.flv
# *.wmv
# *.m4v
# Ignore AI/ML model files
*.h5
*.pth
*.pt
*.pkl
*.joblib
*.model
# Ignore logs and temporary files
logs/
tmp/
*.log
*.tmp
# Ignore cache files
*.cache/
# Ignore environment variable files
.env
# Ignore macOS and Windows system files
.DS_Store
Thumbs.db
# Ignore IDE and editor config files
.idea/
.vscode/
*.swp
*.swo
# Ignore Git metadata
.git/
.gitattributes
# Ignore node_modules (if you have any JavaScript dependencies)
node_modules/
# Ignore Docker files (if you have any Docker-related files)
Dockerfile
docker-compose.yml
.dockerignore
# Ignore __init__.py (if you want to exclude empty init files)
__init__.py
.env