47 lines
406 B
Plaintext
47 lines
406 B
Plaintext
# Git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
PLAN.md
|
|
TODO.md
|
|
|
|
# Build artifacts
|
|
bin/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*_test.go
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Data directories
|
|
sessions/
|
|
data/
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Config files (will be mounted as volumes)
|
|
config.json
|
|
*.example.json
|
|
.whatshooked-cli.example.json
|
|
|
|
# Assets
|
|
assets/
|
|
|
|
# Claude
|
|
.claude/
|
|
CLAUDE.md
|
|
AI_USE.md
|