48 lines
698 B
Plaintext
48 lines
698 B
Plaintext
# 配置保护 .gitignore — 只跟踪关键可恢复配置
|
||
# 排除所有运行时数据
|
||
sessions/
|
||
cron/output/
|
||
cron/jobs.json
|
||
cron/ticker*
|
||
cron/*.lock
|
||
watchdog/
|
||
cache/
|
||
logs/
|
||
*.db
|
||
*.db-shm
|
||
*.db-wal
|
||
*.log
|
||
*.png
|
||
*.jpg
|
||
*.lock
|
||
state*
|
||
gateway*
|
||
processes.json
|
||
feishu_seen_message_ids.json
|
||
channel_directory.json
|
||
auth.json
|
||
kanban*
|
||
pairing/
|
||
prof-b/
|
||
profiles/
|
||
.hub/
|
||
.curator_backups/
|
||
.bundled_manifest
|
||
.curator_state
|
||
.usage.json*
|
||
.tirith-install-failed
|
||
.update_check
|
||
.hermes_history
|
||
models_dev_cache.json
|
||
skill-curator-report.json
|
||
model-health.json
|
||
wiki_curator_state.json
|
||
lsp/
|
||
cuda-libs/
|
||
hermes-agent/ # submodule
|
||
__pycache__/
|
||
*.pyc
|
||
node_modules/
|
||
tmp/
|
||
.env* # 不跟踪 secrets(有 API key)
|