Skip to content

Commit 110a0e3

Browse files
Update .gitignore with comprehensive rules for Python ML project
1 parent cb2451f commit 110a0e3

1 file changed

Lines changed: 60 additions & 3 deletions

File tree

.gitignore

Lines changed: 60 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,62 @@
1-
netsec_env
1+
# Environment and virtual environments
2+
netsec_env/
3+
venv/
4+
env/
25
.env
6+
.venv
7+
8+
# Python artifacts
9+
__pycache__/
10+
*.py[cod]
11+
*$py.class
12+
*.so
13+
.Python
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
30+
# DVC specific
31+
/artifact/
32+
/reports/
33+
/.dvc/cache
34+
/logs/
35+
36+
# MLflow specific
37+
mlruns/
38+
39+
# Testing
40+
.coverage
41+
.pytest_cache/
42+
htmlcov/
43+
coverage.xml
44+
45+
# OS specific
346
.DS_Store
4-
.artifact
5-
.log
47+
.idea/
48+
.vscode/
49+
*.swp
50+
*.swo
51+
52+
# Jupyter Notebook
53+
.ipynb_checkpoints
54+
55+
# Local configuration
56+
.env.local
57+
.env.development.local
58+
.env.test.local
59+
.env.production.local
60+
61+
# Logs
62+
*.log

0 commit comments

Comments
 (0)