-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
33 lines (30 loc) · 816 Bytes
/
Copy path.gitignore
File metadata and controls
33 lines (30 loc) · 816 Bytes
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
# ---------------------------------------------------------------------------
# Large external inputs — fetched by src/step00_fetch_data.py, never committed.
# (~8.6 GB total; core_gbmap.h5ad alone is ~8.1 GB.)
# The small connector/LLM caches in data/cache/ ARE committed (see README).
# ---------------------------------------------------------------------------
# Ignore the directory *contents* (not the directory itself) so the README and
# .gitkeep can be re-included — a trailing-slash `data/raw/` rule would block
# re-inclusion of files beneath it.
data/raw/*
!data/raw/.gitkeep
!data/raw/README.md
# Python
__pycache__/
*.py[cod]
*.egg-info/
.ipynb_checkpoints/
.venv/
venv/
env/
# OS / editor cruft
.DS_Store
.Rhistory
.RData
*.swp
*~
.vscode/
.idea/
# Secrets — never commit API keys
.env
*.key