77 lines
815 B
Plaintext
77 lines
815 B
Plaintext
# Binaries
|
|
bin/
|
|
mev-bot
|
|
mev-bot-test
|
|
ci-agent-bridge
|
|
|
|
# Configuration files that might contain sensitive information
|
|
config/local.yaml
|
|
config/secrets.yaml
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.staging
|
|
|
|
# Go workspace and modules
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Test coverage files
|
|
coverage.txt
|
|
coverage.html
|
|
coverage.out
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Log files and backups
|
|
*.log
|
|
logs/*.log
|
|
logs/*.bak
|
|
logs/*.jsonl
|
|
|
|
# Database files
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Security and keystore files
|
|
keystore/
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
|
|
# Data and temporary directories
|
|
data/
|
|
tmp/
|
|
temp/
|
|
vendor/
|
|
backup/
|
|
backups/
|
|
artifacts/
|
|
|
|
# Archive files
|
|
*.tar.gz
|
|
*.zip
|
|
*.tar
|
|
|
|
# Performance profiles
|
|
*.prof
|
|
*.out
|
|
|
|
# Documentation builds
|
|
docs/_build/
|