forked from Jason-Vaughan/TangleBrain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (47 loc) · 1.1 KB
/
Copy path.gitignore
File metadata and controls
57 lines (47 loc) · 1.1 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
# OS noise
.DS_Store
Thumbs.db
# Editor swap / backup files
*.swp
*.swo
*~
# Logs
*.log
# Local-only notes (use these suffixes for anything you want to keep out of git)
*.local.md
*.private.md
# In-session uploads (screenshots, images dropped into chat) — local-only
.uploads/
# Python
__pycache__/
*.pyc
*.egg-info/
build/
dist/
.eggs/
# Test/dev venvs — created by the Makefile; never committed
.test-venv/
.venv/
venv/
# Secrets — keys live outside the repo and are referenced by key_ref, never committed
*.key
# Local agent/process artifacts — not part of the product; kept out of the repo.
# These directories and notes are used by the local development workflow and read on disk;
# they are intentionally never tracked.
.claude/
.tangleclaw/
.prawduct/
CLAUDE.md
C1-BUILD-REPORT.md
TANGLEBRAIN-STATUS.md
TANGLEBRAIN.md
# Personal config overrides — keep your real roster/settings out of git
# (the shipped config/*.yaml stay generic; your real deployment lives in an
# external/override file referenced at runtime)
*.local.yaml
*.local.yml
roster.local.yaml
settings.local.yaml
# Env files
.env
.env.*