
- Rock-solid Rust implementation replacing unreliable custom API - OAuth2 authentication with automatic token refresh - HTTP server with multiple endpoints (/current, /phantombot, /health) - Comprehensive error handling and retry logic - PhantomBot integration examples and documentation - CLI tool with monitoring and configuration management
28 lines
283 B
Plaintext
28 lines
283 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
Cargo.lock
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Configuration files with secrets (keep example files)
|
|
config.toml
|
|
token.json
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp |