-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
63 lines (48 loc) · 1.59 KB
/
Copy path.gitignore
File metadata and controls
63 lines (48 loc) · 1.59 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
## .NET
bin/
obj/
*.user
*.suo
*.userprefs
*.sln.docstates
.vs/
## SQLite
*.db
*.db-shm
*.db-wal
## Peer identity seeds — personal per-peer identity (like the databases, kept local).
## The mechanism + format are documented in the tracked seeds/README.md; force-add a
## specific seed (git add -f seeds/<name>.json) to deliberately version it.
seeds/*.json
## IDE
.idea/
.vscode/
## Claude Code (machine-local agent config & worktrees)
.claude/
## OS
Thumbs.db
.DS_Store
## Secrets — persistence.json holds the real config incl. API key; never commit it.
## (persistence.template.json is the committed sample; the API's appsettings.json is
## framework-only config and is committed.)
persistence.json
# Test coverage output
TestResults/
## TUI preview scratch — screenshots + capture script for visual review,
## pushed to a throwaway branch when needed, never to main.
tui-preview/
## Host <-> peer-container file exchange (DB snapshots + shared files). Never commit.
/shared/
## Local, host-specific compose overrides (e.g. mounting an SSH key into the peer's container).
container/docker-compose.override.yml
.codex/
.logs/
## Peer-memory backups (private — never commit). Off-site backup destination is a separate decision.
backups/
## Per-peer compose files rendered by scripts/peer.ps1 (service peer-<name>); transient, regenerated per run.
container/peer/docker-compose.*.generated.yml
## Per-peer container config files (hold API keys — never commit).
container/peer/configs/
## Python bytecode cache (e.g. from scripts/import_chatgpt_export.py) — regenerated on every run.
__pycache__/
*.pyc