saving in place
This commit is contained in:
42
.gitignore
vendored
42
.gitignore
vendored
@@ -1,22 +1,32 @@
|
||||
# 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
|
||||
# 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
|
||||
@@ -27,14 +37,40 @@ coverage.html
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Log files
|
||||
# Log files and backups
|
||||
*.log
|
||||
logs/*.log
|
||||
logs/*.bak
|
||||
logs/*.jsonl
|
||||
|
||||
# Database files
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# Data directory
|
||||
# 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/
|
||||
|
||||
Reference in New Issue
Block a user