9dc6776bb4
Adds Seth's homelab convention files on top of upstream glabels-qt master: CLAUDE.md (project instructions), IDEA.md (brief), DECISIONS.md (decision log, empty), and the kickoff handoff under .claude/handoffs/. Appends a clearly-marked sethLabels section to .gitignore for .backup/, the GITEA_API.md symlink, .env files, and handoff drafts. This is the only non-upstream commit on main. All preceding history is authored by the glabels.org team (Jaye Evins et al.) and untouched. Future upstream merges should fast-forward or rebase cleanly since the scaffold lives in distinct files at repo root. No source-code changes. License unchanged (GPL-3.0).
56 lines
736 B
Plaintext
56 lines
736 B
Plaintext
# My cmake build directory
|
|
/build
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
|
|
# Compiled translation files
|
|
*.qm
|
|
|
|
# Sphinx-build artifacts
|
|
/user-docs/_build/doctrees
|
|
|
|
#
|
|
# Ignore artifacts from editors, patching, etc.
|
|
#
|
|
*~
|
|
*.bak
|
|
\#*\#
|
|
.\#*
|
|
.*.swp
|
|
*.orig
|
|
*.rej
|
|
gmon.out
|
|
core
|
|
*.safe
|
|
*.sav*
|
|
.directory
|
|
TEST-DATA
|
|
SAV*
|
|
OLD*
|
|
|
|
# === sethLabels (deployment fork) additions ===
|
|
# Local backup snapshots (per ~/.claude/CLAUDE.md safety rule)
|
|
.backup/
|
|
|
|
# Local-only symlink to ~/bin/GITEA_API.md (target is outside the repo)
|
|
GITEA_API.md
|
|
|
|
# Secrets / env
|
|
.env
|
|
.env.*
|
|
|
|
# Handoff drafts (operator scratch — final handoffs ARE committed)
|
|
.claude/handoffs/*.draft.md
|