The SQLite database contains integral project content (273 tickets, dependencies, sprint planning). Remove from .gitignore and check in. WAL/SHM journal files remain ignored as transient. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
406 B
Plaintext
28 lines
406 B
Plaintext
# Build and cache
|
|
.cache/
|
|
|
|
# Database journal files (transient, not the DB itself)
|
|
db/commonwealth.db-wal
|
|
db/commonwealth.db-shm
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code internals (plans, session transcripts, local settings)
|
|
# Note: .claude/agents/ and .claude/skills/ ARE tracked
|
|
.claude/plans/
|
|
.claude/projects/
|
|
.claude/settings.json
|