-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
78 lines (65 loc) · 1.3 KB
/
Copy path.gitignore
File metadata and controls
78 lines (65 loc) · 1.3 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
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
dist/
build/
*.egg-info/
.eggs/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Secrets and credentials — never commit
.env
.env.*
*.env
!.env.example
secrets/
credentials/
*credentials*.json
*service_account*.json
lakehouse_config.local.json
# Data — large files tracked by DVC
data/
*.parquet
*.delta
*.avro
# MkDocs site build output
/site/
# Delta Lake local
_delta_log/
_checkpoints/
# Dagster — local instance state (history/, schedules/, storage/, logs/)
# `dagster dev` creates ./.tmp_dagster_home_*/ when DAGSTER_HOME is unset.
dagster_home/
.tmp_dagster_home*/
.dagster/
# DuckDB UI notebooks — binary, machine-specific (absolute paths baked in).
# The canonical source for the notebook cells is notebooks/*.sql (tracked).
*.duckdb
*.duckdb.wal
*.duckdb.tmp/
# MLflow
mlruns/
mlartifacts/
# Notebooks checkpoints
.ipynb_checkpoints/
# macOS
.DS_Store
.AppleDouble
# IDE
.vscode/
.idea/
*.swp
# DVC
/data/*.dvc
# Claude Code — personal/auto-approved permissions stay local (machine-specific).
# Shared config (settings.json, skills/, commands/, rules/, hooks/) IS tracked.
.claude/settings.local.json
# detect-secrets baseline (commit this file — it's the known-clean baseline)
# .secrets.baseline ← intentionally NOT ignored