-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
40 lines (33 loc) · 812 Bytes
/
Copy path.gitignore
File metadata and controls
40 lines (33 loc) · 812 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
34
35
36
37
38
39
40
# --- Python venv ---
venv_dbt_duckdb/
# --- dbt build artefacts (regenerated per run) ---
fidemo/target/
fidemo/dbt_packages/
fidemo/logs/
fidemo/package-lock.yml
fidemo/.user.yml
# --- Local DuckDB + DuckLake state ---
fidemo/my_db.duckdb
fidemo/my_db.duckdb.wal
fidemo/ducklake_catalog.sqlite
fidemo/ducklake_catalog.sqlite-journal
# --- Flyway (downloaded tarball + extracted tree) ---
flyway-*/
flyway-commandline-*.tar.gz
flyway.log
# --- Corporate / custom certificates ---
cert/
# --- Claude Code local state ---
.claude/settings.local.json
# --- Generated presentation decks (rebuild via `make build-decks`) ---
docs/*.pptx
# Office / Keynote lockfiles when a deck is open
~$*.pptx
**/~$*
# --- Generic Python / IDE noise ---
__pycache__/
*.pyc
.pytest_cache/
.mypy_cache/
.ruff_cache/
.DS_Store