Files
mev-beta/.gitignore
Krypto Kajun fac8a64092 feat: Implement comprehensive Market Manager with database and logging
- Add complete Market Manager package with in-memory storage and CRUD operations
- Implement arbitrage detection with profit calculations and thresholds
- Add database adapter with PostgreSQL schema for persistence
- Create comprehensive logging system with specialized log files
- Add detailed documentation and implementation plans
- Include example application and comprehensive test suite
- Update Makefile with market manager build targets
- Add check-implementations command for verification
2025-09-18 03:52:33 -05:00

41 lines
418 B
Plaintext

# Binaries
bin/
# Configuration files that might contain sensitive information
config/local.yaml
config/secrets.yaml
# Go workspace
go.work
# Test coverage files
coverage.txt
coverage.html
# IDE files
.vscode/
.idea/
*.swp
*.swo
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Log files
*.log
# Database files
*.db
# Data directory
data/
vendor/
backup/
backups/