Skip to content

Commit 00919a5

Browse files
committed
Add .gitignore to exclude virtual environment and large files
1 parent 7e81745 commit 00919a5

File tree

1 file changed

+34
-15
lines changed

1 file changed

+34
-15
lines changed

.gitignore

Lines changed: 34 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,34 @@
1-
__pycache__/
2-
Observability.md
3-
.venv/
4-
.__pycache__
5-
6-
7-
# DVC managed artifacts (all artifacts handled by DVC)
8-
artifacts/
9-
10-
# Keep essential files for CI/CD
11-
!artifacts/model_evaluation/metrics.json
12-
!artifacts/.gitkeep
13-
14-
# Log files
15-
logs/
1+
# Virtual environments
2+
mlops_env/
3+
venv/
4+
env/
5+
.env
6+
7+
# Python cache
8+
__pycache__/
9+
*.pyc
10+
*.pyo
11+
*.pyd
12+
.Python
13+
14+
# ML artifacts (should be tracked by DVC)
15+
artifacts/data_ingestion/
16+
artifacts/model_trainer/
17+
*.pkl
18+
*.joblib
19+
20+
# IDE
21+
.vscode/
22+
.idea/
23+
24+
# OS
25+
.DS_Store
26+
Thumbs.db
27+
28+
# Logs
29+
*.log
30+
logs/
31+
32+
# Temporary files
33+
*.tmp
34+
*.temp

0 commit comments

Comments
 (0)