mirror of
https://github.com/nesquena/hermes-webui.git
synced 2026-05-25 19:20:16 +00:00
c86545b6a7
Two artifacts from a contributor's local graphify (code-graph) tooling slipped into PR #1233 (workspace drag-to-reorder): .graphify_cached.json (3.5MB) .graphify_uncached.txt (refs /home/fr33m1nd/hermes-webui-src/...) Neither belongs in source control: the .json is an autogenerated cache of node IDs for a graph visualisation tool, and the .txt is a file-discovery index pointing at the contributor's local workspace (/home/fr33m1nd/hermes-webui-src/) — paths that aren't valid for any other developer. The repo already ignores graphify-out/ but these two top-level dotfiles weren't covered. Add explicit ignore entries and remove the tracked copies. No code change. CI remains green on 3.11/3.12/3.13. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
49 lines
892 B
Plaintext
49 lines
892 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Backup and temporary files
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
|
|
# Archive directory (pre-git backups, kept on disk but not tracked)
|
|
archive/
|
|
|
|
# Local environment and secrets (but keep the example template)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.claude/
|
|
CLAUDE.md
|
|
AGENTS.md
|
|
.cursorrules
|
|
.windsurfrules
|
|
.aider*
|
|
copilot-instructions.md
|
|
|
|
# Generated screenshots and transient artifacts
|
|
screenshot-*.png
|
|
full-UI.png
|
|
|
|
# Version file written by Docker/CI build — generated, never committed
|
|
api/_version.py
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local reference clones — never committed (except tracked design/UI-UX reference pages)
|
|
docs/*
|
|
!docs/ui-ux/
|
|
!docs/ui-ux/**
|
|
|
|
# Local-only PR review harness: rendering drivers, sample bank, fixtures.
|
|
# Used by Claude during deep reviews; never shared in the repo.
|
|
.local-review/
|
|
graphify-out/
|
|
.graphify_cached.json
|
|
.graphify_uncached.txt
|