6bb7e69141
Cross-repo git-hygiene audit remediation: surface ~/Projects/standards/INBOX.md items at session start, and switch .gitignore to the deny-by-default .claude/* block (shared wiring allow-listed) plus the canonical secrets/env lines — per standards/portability.md.
40 lines
854 B
Plaintext
40 lines
854 B
Plaintext
# Deploy secrets — copy .deploy.env.example to .deploy.env and fill in values
|
|
.deploy.env
|
|
|
|
# Scratch file used by bin/bump-version.sh to pre-fill the release-notes
|
|
# prompt. Written by Claude after code changes, consumed + deleted on the
|
|
# next `make deploy` / `make bump`.
|
|
.release-notes-pending.txt
|
|
|
|
# OS
|
|
.DS_Store
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# Build artifacts (regenerated by `make` / `npm run build`)
|
|
javascript/
|
|
*.s9pk
|
|
image.tar
|
|
|
|
# Runtime / user data — must never be committed
|
|
history/
|
|
cookies.txt
|
|
*.txt.bak
|
|
youtube-summarizer-library-export*.json
|
|
ytdlp-cache/
|
|
|
|
# Local dev secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Claude Code — deny by default (worktrees, plans, local settings stay out),
|
|
# allow-list shared wiring (see standards/portability.md).
|
|
.claude/*
|
|
!.claude/rules/
|
|
!.claude/agents/
|
|
!.claude/commands/
|
|
!.claude/skills/
|
|
!.claude/settings.json
|