-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (88 loc) · 3.19 KB
/
Copy path.gitignore
File metadata and controls
101 lines (88 loc) · 3.19 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
91
92
93
94
95
96
97
98
99
100
101
# ─── Python ────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
.installed.cfg
*.egg
.eggs/
# ─── Virtual environments ──────────────────────────────────────────
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# ─── Jupyter / Colab ───────────────────────────────────────────────
.ipynb_checkpoints/
.colab/
*.nbconvert.ipynb
# ─── IDE / editor ──────────────────────────────────────────────────
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db
# ─── Raw data (too large for git; download from EIA-930) ───────────
# Each EIA-930 BALANCE CSV is 40–48 MB; under GitHub's per-file 100 MB
# limit, but the bulk would bloat the repo. Notebook 01 auto-downloads
# any missing CSVs from https://www.eia.gov/electricity/gridmonitor/sixMonthFiles/
data/raw/*.csv
data/raw/*.parquet
EIA930_BALANCE_*.csv
# ─── Staging / pipeline artifacts ──────────────────────────────────
# The staging parquet (~1.3 MB) is small and is a key deliverable —
# commit it so reviewers can reproduce model runs without re-corralling.
# But joblib caches can run to hundreds of MB — exclude.
data/staging/*.joblib
*.joblib
# Keep the canonical staging parquet:
!data/staging/staging_ercot_hourly.parquet
!data/staging/ercot_temperature.parquet
# ─── Secrets ───────────────────────────────────────────────────────
.env
.env.*
!.env.example
secrets.yaml
secrets.json
*.pem
*.key
# ─── Model artifacts (often large) ─────────────────────────────────
models/*.pkl
models/*.bin
models/*.joblib
*.pkl
!Scripts/MODELS/utils/*.py # keep python utility files
# ─── Database dumps ────────────────────────────────────────────────
*.sql.gz
*.dump
*.bak
# ─── Logs / coverage ───────────────────────────────────────────────
*.log
.coverage
htmlcov/
.pytest_cache/
.mypy_cache/
# ─── OS junk ───────────────────────────────────────────────────────
.DS_Store
.AppleDouble
.LSOverride
Icon?
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# ─── Drive metadata (if cloning from synced Drive folder) ──────────
.tmp.drivedownload/
.tmp.driveupload/
*.gdoc
*.gsheet
*.gslides
*.gdraw
# ─── Archive (don't commit Drive Archive folder if synced locally) ─
Archive/