Files
dss/.gitignore
Bruno Sarlo 1d53ec341d
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled
chore: exclude generated files from git tracking
- Remove .dss/data/, .dss/components/, generated stories from tracking
- Update .gitignore to exclude all runtime/generated content
- Keep only reference files (.dss/config/, .dss/core/, .dss/skins/, .dss/themes/, .dss/schema/)

Generated files are now created on /dss-init and not committed.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 08:24:19 -03:00

102 lines
1.7 KiB
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
*.egg-info/
dist/
build/
# Node
node_modules/
npm-debug.log*
yarn-error.log*
package-lock.json
# Environment
.env
.env.local
*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
# Testing
.pytest_cache/
coverage/
.coverage
# Databases
*.db
*.sqlite
*.sql
*.db.old
# Cache
.cache/
.dss-temp/
# Backups
*.backup
*.bak
*~
*.corrupted.*
archive/
test_output/
# Build outputs
dist/
.next/
out/
storybook-static/
# Local MCP config (generated by dss-init.sh)
.mcp.json
.claude/mcp.json
# =============================================================================
# DSS GENERATED FILES - Created by /dss-init, not committed
# =============================================================================
# DSS runtime data (created on init)
.dss/data/
.dss/cache/
.dss/logs/
.dss/dss.db
.dss/dss.pid
.dss/components/
.dss/runtime-config.json
# DSS generated hashes (regenerated on init)
.dss/core-hashes.sha256
# Generated Storybook stories (created from tokens)
admin-ui/src/stories/
# admin-ui build output
admin-ui/dist/
# =============================================================================
# DSS REFERENCE FILES - These ARE committed (source of truth)
# =============================================================================
# Keep these in git:
# - .dss/config/ # Figma credentials, project config
# - .dss/core/ # Core primitives (immutable reference)
# - .dss/skins/ # Skin definitions (reference)
# - .dss/themes/ # Theme definitions (reference)
# - .dss/schema/ # Contracts and schemas (reference)
# - dss-claude-plugin/core/skins/ # Plugin skin references