Files
DJ 3446e3f619 chore: add dev-setup.sh for contributor workflow
Creates symlinks from install dirs to repo for live editing.
Also adds wiki/ to .gitignore for local wiki editing.
2025-12-20 12:36:48 -05:00

87 lines
2.1 KiB
Plaintext

# ─── Python ──────────────────────────────────────────────────────────────────
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.so
# Virtual environments
venv/
.venv/
env/
.env/
ENV/
.python-version
# Distribution / packaging
dist/
build/
*.egg-info/
*.egg
.eggs/
# ─── QuickShell / QML ────────────────────────────────────────────────────────
# QML cache
.qmlc
*.qmlc
qmlcache/
# ─── Development ─────────────────────────────────────────────────────────────
# Claude Code / AI assistant
.claude/
# Wiki (cloned separately for local editing)
wiki/
# IDE / Editor
.vscode/
.idea/
*.swp
*.swo
*~
.project
.settings/
*.sublime-workspace
*.sublime-project
# ─── Build & Temp ────────────────────────────────────────────────────────────
# OS generated
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Temporary files
*.tmp
*.temp
*.bak
*.backup
*.log
# ─── Project Specific ────────────────────────────────────────────────────────
# Backups directory (development iterations, not for deployment)
backups/
assets/timeline*
# User-specific context memories (development notes)
docs/
# Runtime generated
*.pid
*.sock
# Screenshots/recordings captured during testing
test-captures/
# ─── Secrets / Sensitive ─────────────────────────────────────────────────────
# Never commit credentials
*.pem
*.key
.env.local
.env.*.local
credentials.json
secrets.json