42 lines
307 B
Plaintext
42 lines
307 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Examples
|
||
|
|
.examples/
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
!README.md
|
||
|
|
|
||
|
|
# Test files
|
||
|
|
*_test.go
|
||
|
|
test-kosmi
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
matterbridge
|
||
|
|
*.exe
|
||
|
|
*.dll
|
||
|
|
*.so
|
||
|
|
*.dylib
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode/
|
||
|
|
.cursor/
|
||
|
|
.idea/
|
||
|
|
|
||
|
|
# OS
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
*.log
|
||
|
|
|
||
|
|
# Chat summaries
|
||
|
|
chat-summaries/
|
||
|
|
|
||
|
|
# Temporary files
|
||
|
|
tmp/
|
||
|
|
temp/
|
||
|
|
|