Add matterbridge.toml, test configs, HAR captures, and JWT-containing debug files to .gitignore. Provide matterbridge.toml.example with placeholder values for safe onboarding. Co-authored-by: Cursor <cursoragent@cursor.com>
69 lines
845 B
Plaintext
69 lines
845 B
Plaintext
# Binaries
|
|
matterbridge
|
|
test-kosmi
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.cursor/
|
|
|
|
# Config files with secrets
|
|
matterbridge.toml.local
|
|
matterbridge.toml
|
|
test-token-config.toml
|
|
*.har
|
|
*.har.txt
|
|
*.har.gz
|
|
auth-data.json
|
|
definitely_logged_*.json
|
|
loggedin_maybe.json
|
|
loggedout_maybe.json
|
|
|
|
# Debug/capture files with JWT tokens
|
|
QUICK_START_TOKEN.md
|
|
loggedout_websocket_messages.md
|
|
logging_IN_attempt_but_loggedout_websocket_messages.md
|
|
logging_IN_attempt_but_now_logged_IN_websocket_messages.md
|
|
*.secret.toml
|
|
.env
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
|
|
# Other
|
|
.examples/
|
|
chat-summaries/
|
|
bin/
|
|
|
|
# Persistent data directory (contains cached tokens)
|
|
data/
|