-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
90 lines (76 loc) · 3.14 KB
/
.gitignore
File metadata and controls
90 lines (76 loc) · 3.14 KB
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
80
81
82
83
84
85
86
87
88
89
90
# ─────────────────────────────────────────────────────────────
# PYTHON & BUILD FILES
#
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
*.manifest
*.spec
# Keep empty data folders for structure
!data/**/.gitkeep
# Virtual environments
.venv/
venv/
env/
ENV/
*.env
# uv & pip artifacts
uv.lock
pip-wheel-metadata/
*.whl
# ─────────────────────────────────────────────────────────────
# DATA & PIPELINE OUTPUTS
# ─────────────────────────────────────────────────────────────
# Raw and processed data directories — reproducible, not versioned
data/00-raw/
data/01-clean/
data/02-model/
data/03-sandbox/
# Optional: keep the directory structure but not contents
!data/.gitkeep
# ─────────────────────────────────────────────────────────────
# NOTEBOOKS & TEMPORARY FILES
# ─────────────────────────────────────────────────────────────
.ipynb_checkpoints/
*.ipynb~
*.bak
*.tmp
*.log
.DS_Store
# ─────────────────────────────────────────────────────────────
# IDE & OS METADATA
# ─────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
Thumbs.db
desktop.ini
# ─────────────────────────────────────────────────────────────
# STREAMLIT & APP RUNTIME FILES
# ─────────────────────────────────────────────────────────────
# Streamlit generates cached UI and data folders
.streamlit/
**/.streamlit/
# ─────────────────────────────────────────────────────────────
# PROJECT-SPECIFIC EXCLUSIONS
# ─────────────────────────────────────────────────────────────
# Parquet and intermediate model outputs (recreated by pipeline)
*.parquet
*.csv
*.xlsx
*.json
# Logs and DQ output
data/01-clean/_dq/
# Sandbox, temporary exports, and scratch work
data/03-sandbox/*
tmp/
cache/
# Exclude devcontainer.json
!devcontainer.json