-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
220 lines (203 loc) · 6.81 KB
/
Copy path.gitignore
File metadata and controls
220 lines (203 loc) · 6.81 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
__pycache__
.ipynb_checkpoints
.env
.env.*
*.db
*.db-shm
*.db-wal
# Снимки БД, скачанные scripts/recover-sqlite-from-backups.sh pull-*
backups-recovered/
app/data/recordings
app/data/dataset/
app/data/cache/
app/data/.ultralytics/
app/data/processor/
app/data/notify_temp
# Снимки runtime процессора (локально / в volume; не коммитить)
app/data/diagnostics/
app/data/feedback_exports/
app/processor/data/
app/data/processor.log*
app.log
.DS_Store
# Windows NTFS ADS artifacts from downloaded/copied files
**/*:Zone.Identifier
**/*:Zone.Identifier.*
/datasets
scripts/datasets/.cache/
# Optional local clones of external repos (do not commit as git submodules)
scripts/datasets/github_sources/*
!scripts/datasets/github_sources/README.md
scripts/datasets/brg/
# Локальная выгрузка YOLO для трёхклассового детектора (bootstrap_detector_yolo.py)
scripts/datasets/binary/birds/
scripts/datasets/binary/rodent/
scripts/datasets/binary/background/
scripts/datasets/binary/merged/
# Слитый трёхклассовый датасет (merge_datasets_three_class.py --output-dir brg)
scripts/datasets/brg/
# старые пути (миграция с прежней схемы)
scripts/datasets/birds_binary_yolo/
scripts/datasets/rodent_yolo/
scripts/datasets/background_yolo/
scripts/datasets/birds_rodent_background_yolo/
scripts/datasets/coco_birds_yolo/
scripts/datasets/.venv-detector/
.venv-datasets/
app/.venv/
app/.ruff_cache/
app/.pytest_cache/
# Local virtualenv created by developer tooling
.venv/
# make ci-local / scripts/ci-full-local.sh
.venv-ci/
.venv-yolo-fetch/
.venv-docs/
# Local model weight (do not commit large model blobs)
app/yolo11n.pt
# Настройки — не коммитить (только шаблоны в репо)
user_config.yaml
app/app_config/user_config.yaml
app/app_config/user_config.yaml.bak
app/configs/*.local.yaml
app/configs/*.local.yml
app/configs/env.local
# Deploy — локальные переопределения (IP, URL)
scripts/deploy.local.sh
# Правила для git filter-repo --replace-text (могут содержать реальные хост/IP)
scripts/.git-filter-repo-replacements.local.txt
# Deploy — никогда не коммитить
.deploy_credentials
*.pem
**/secrets/
**/*password*
**/*secret*
# ESPHome: пример секретов — в репозитории (см. esphome/README.md)
!esphome/secrets.yaml.example
# Локальный конфиг весов с Wi‑Fi/OTA — в репо шаблон bird-feeder-scale.yaml.example
esphome/bird-feeder-scale.yaml
!esphome/bird-feeder-scale.yaml.example
esphome/.esphome/
# Код без секретов: имена файлов совпадают с шаблонами **/*secret* / **/*password*
!app/app_config/secret_env.py
!app/web/services/ui_password_service.py
!app/web/tests/test_secret_env.py
!app/web/tests/test_ui_password_service.py
# Hugging Face — токены (hf_...) не должны попадать в репо
**/.cache/huggingface/
# E2E — скриншоты/отчёты могут содержать данные из UI
app/e2e/node_modules/
app/e2e/playwright-report/
app/e2e/test-results/
# Coverage
app/htmlcov/
app/.coverage
app/ui/coverage/
# CodeQL локально: БД, SARIF, скачанный CLI (см. scripts/codeql-local.sh)
.tools/
# Cursor IDE — в репо только правило деплоя для агента; остальное локально
.cursor/*
!.cursor/rules/
.cursor/rules/*
!.cursor/rules/deploy.mdc
!.cursor/rules/dev-workflow.mdc
# Артефакты (curl -c, debug)
**/-X
# Обученные модели (веса): игнор под models/, кроме явных текстов/YAML.
# Примечание: app/processor/models/ целиком ломает negation для подкаталогов — используем models/*.
app/processor/models/*
!app/processor/models/classification/
app/processor/models/classification/*
!app/processor/models/classification/weights/
app/processor/models/classification/weights/*
!app/processor/models/classification/weights/class_names.txt
!app/processor/models/detection/
app/processor/models/detection/*
!app/processor/models/detection/README.md
# BRG binary detector shipped with Hub + matching OpenVINO IR (rest of weights/ — локально).
!app/processor/models/detection/weights/
app/processor/models/detection/weights/*
app/processor/models/detection/weights/snapshots/**
!app/processor/models/detection/weights/best.pt
!app/processor/models/detection/weights/last.pt
!app/processor/models/detection/weights/best_openvino_model/
app/processor/models/detection/weights/best_openvino_model/*
!app/processor/models/detection/weights/best_openvino_model/best.bin
!app/processor/models/detection/weights/best_openvino_model/best.xml
!app/processor/models/detection/weights/best_openvino_model/metadata.yaml
# Windows / экспорт мусор рядом с весами
**/Zone.Identifier
!app/processor/models/tracker/
app/processor/models/tracker/*
!app/processor/models/tracker/*.yaml
!app/processor/models/behavior/
app/processor/models/behavior/*
!app/processor/models/behavior/README.md
!app/processor/models/behavior/behavior_logistic_export@v1.json
!app/processor/models/behavior/behavior_logistic_openvino/
!app/processor/models/behavior/behavior_logistic_openvino/behavior_logistic.onnx
# Сгенерированная документация (make docs)
docs/api/
docs/ui/
# MkDocs (static doc site)
site/
.venv-docs/
.venv-docs-polish/
.venv-docs-tmp/
app/data/file_test_control/
# Flask — локальный instance (сессии, временные БД при разработке)
app/web/instance/
# Корневые дампы агента / recovery / pytest-списки (не коммитить)
/.artifacts/
/.sandbox/
/.pytest_cache/
/.pytest_*.txt
/.ui_build_*.txt
/.ui_lint_*.txt
/probe_recovery.txt
/.allowlist_*.json
/.control_species_counts.json
/.current_*.json
/.current_*.txt
/.edge_*.json
/.edge_*.txt
/.latest_*.json
/.latest_*.txt
/.march_*.json
/.nuthatch_*.json
/.pause_*.json
/.post_deploy_*.json
/.post_deploy_*.txt
/.pre_march_*.json
/.prod_*.json
/.quick_*.json
/.quick_*.txt
/.recent_*.txt
/.regen_*.json
/.regen_*.txt
/.restart_*.json
/.restart_*.txt
/.resume_*.json
/.single_precise_*.json
/.single_precise_*.txt
/.timeout_*.json
/.timeout_*.txt
/.unknown_rows.json
/.video*.json
/.weird_*.json
/benchmark*.json
/benchmark_*.json
/mlruns/
/wandb/
/runs/
/lightning_logs/
*.ckpt
*.prof
*.trace.json
# Артефакты автомат-ревью / CI runlogs (локально можно держать, в git не коммитить)
/.review-automation/
/runlogs*/
/.pending-changes.md
# Локальный scratch и копии диагностики у корня репо (не путать с app/data/)
/tmp/
/data/