mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-04-28 06:59:37 +00:00
Adds `assets/discord-*.png` to .gitignore so local promo/branding assets that aren't ready to publish don't show up as untracked noise in `git status`. Any Discord asset that should be tracked later can be added with `git add -f`.
38 lines
396 B
Text
38 lines
396 B
Text
node_modules/
|
|
dist/
|
|
*.tgz
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Planning artifacts (internal, not shipped)
|
|
docs/superpowers/
|
|
.claude/
|
|
|
|
# Config / secrets
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Debug / logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Cache
|
|
.cache/
|
|
*.sqlite
|
|
|
|
# Build artifacts
|
|
*.tsbuildinfo
|
|
|
|
# Local Discord brand / promo assets not yet ready to publish
|
|
assets/discord-*.png
|