-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.gitignore
More file actions
192 lines (159 loc) · 5.04 KB
/
Copy path.gitignore
File metadata and controls
192 lines (159 loc) · 5.04 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
**/__pycache__
.coverage
.coverage.*
**/coverage-reports/
**/htmlcov/
*.wav
# Wake-word notification tones are bundled assets, not user audio — keep them tracked
# so they're baked into the wakeword-service image (and served to all clients).
!extras/wakeword-service/tones/*.wav
**/*.env
# Suffixed variants too. "**/*.env" only matches names ENDING in .env, so hand-made
# backups (.env.pre-<date>, .env.bak-<date>) were untracked-but-not-ignored and a
# blanket `git add` would have published live keys to this public repo.
**/.env.*
!**/.env.template
!**/.env.test.template
**/memory_config.yaml
!**/memory_config.yaml.template
tests/setup/.env.test
!tests/setup/.env.test.template
# Main config (user-specific)
config/config.yml
!config/config.yml.template
# Plugins config (contains secrets)
config/plugins.yml
!config/plugins.yml.template
# Advertised services — per-machine runtime state, regenerated by the node agent on
# every start (services.py / edge/service_manager.py). No defaults, so no template.
config/advertised-services.json
# Individual plugin configs (may contain user-specific settings)
backends/advanced/src/advanced_omi_backend/plugins/*/config.yml
!backends/advanced/src/advanced_omi_backend/plugins/*/config.yml.template
# Config backups
config/*.backup.*
config/*.backup*
config/*.bak*
plugins/*/config.yml.backup
example/*
**/node_modules/*
**/ollama-data/*
**/model_cache
**/model_cache/*
.vscode/*
**/audio_chunks/*
**/mongo_data/*
.cursor/*
.zed/*
.locks
blobs
transcription_results.csv
**cache/*
*.ckpt
**/hub/*
*.log
**/speaker_data*/**
**/.venv/*
**metrics_report**
*.db
**/advanced_omi_backend.egg-info/
**/dist/*
**/build/*
**/*.egg-info/
untracked/*
backends/advanced/data/*
backends/advanced/diarization_config.json
extras/local-wearable-client/devices.yml
extras/llm-services/cache/**
!extras/local-wearable-client/devices.yml.template
extras/havpe-relay/firmware/secrets.yaml
extras/test-audios/*
## Python Build stuff
**/*egg-info/*
# Speaker Recognition
extras/speaker-omni-experimental/data/*
extras/speaker-omni-experimental/cache/*
# Discovery agent PID file
edge/.discovery-agent.pid
# Runtime-generated diagnostics and reports. Keep durable documentation under docs/;
# these locations are regenerated by local runs and screenshot/evaluation tooling.
/artifacts/
/backends/advanced/artifacts/
# Runtime and recovered Chronicle memory vaults. The canonical backend vault is
# already covered by backends/advanced/data/* above; the recursive rule also keeps
# copied vault trees from accidentally becoming Git-visible elsewhere.
**/conversation_docs/
/recovered-vault/
# Local Graphify knowledge graph. Agents query this directly; it is generated
# per checkout and hidden from the editor explorer via .vscode/settings.json.
graphify-out/
# AI Stuff: keep machine-local Claude state ignored, but track the shared skill link.
.claude/*
!.claude/skills
# SSL / TLS certificates (centralized)
certs/*.crt
certs/*.key
certs/*.pem
# Private keys, anywhere in the tree. app/.gitignore already covers *.p8 for
# the App Store Connect key, but only inside app/ — a copy left at the repo
# root or in a scratch directory would be committed. This repo is public, so
# the pattern is repo-wide and unanchored on purpose.
*.p8
*.p12
*.mobileprovision
# Design plans and point-in-time research. Kept locally, not published: they are
# working notes whose conclusions move faster than the code, and the screen-memory
# reports alone are ~430KB of transcript-heavy evidence.
docs/plans/
docs/research/
# Per-user, per-machine agent guidance (fleet hostnames, LAN addresses).
# Project-wide guidance belongs in AGENTS.md / CLAUDE.md, which are checked in.
CLAUDE.local.md
# Operator notes about this particular fleet: which box is which, what each one
# can and cannot do. Facts about hardware and corporate policy, not guidance for
# any one tool, so they are kept out of CLAUDE.local.md.
NOTES.local.md
# Legacy per-service SSL (kept for cleanup)
extras/speaker-recognition/ssl/*
backends/advanced/ssl/*
# Generated reverse proxy configs
extras/speaker-recognition/nginx.conf
extras/speaker-recognition/Caddyfile
# Machine-local Compose overrides and ad-hoc backups. Overrides may contain host
# paths, device mappings, and other operator-specific configuration.
docker-compose.override.yml
docker-compose.override.yaml
compose.override.yml
compose.override.yaml
docker-compose*.bak-*
docker-compose*.pre-*
compose*.bak-*
compose*.pre-*
# Cache
extras/speaker-recognition/cache/*
extras/speaker-recognition/outputs/*
**/model_cache_strix_test/*
# my backup
backends/advanced/src/_webui_original/*
backends/advanced-backend/data/falkordb_data/*
backends/advanced-backend/data/speaker_model_cache/
*.bin
*.sqlite3
*checkpoints
# Experimental provider-local model fine-tuning workspaces
extras/asr-services/providers/*/finetune/
# k8s config
backends/charts/advanced-backend/env-configmap.yaml
extras/openmemory-mcp/data/*
.env.backup.*
backends/advanced/nginx.conf
backends/advanced/Caddyfile
app/ios/*
app/android/*
results
log.html
output.xml
report.html
.secrets
sdk/
edge/.discovery-agent.pid