Remove outdated bot_cli.py

- Remove bot_cli.py as it was incompatible with current architecture
- CLI was trying to call non-existent methods on MeshCoreBot class
- Add bot_cli.py to .gitignore to prevent future commits
- Update README.md to remove CLI references
- Bot management can be done through config.ini file editing
This commit is contained in:
agessaman
2025-09-06 12:07:59 -07:00
parent 4e1e2a8403
commit 6aaabcafb2
2 changed files with 1 additions and 13 deletions
+1
View File
@@ -120,6 +120,7 @@ Thumbs.db
config.ini
*.db
mctomqtt.py
bot_cli.py
# Local documentation and development files
docs/local/
-13
View File
@@ -12,7 +12,6 @@ A Python bot that connects to MeshCore mesh networks via serial port or BLE. The
- **Scheduled Messages**: Send messages at configured times
- **Direct Message Support**: Respond to private messages
- **Logging**: Console and file logging with configurable levels
- **CLI Management**: Command-line interface for bot management
## Requirements
@@ -100,18 +99,6 @@ colored_output = true # Enable colored console output
python meshcore_bot.py
```
### CLI Management
The bot includes a CLI for management:
```bash
# Interactive mode
python bot_cli.py --interactive
# Command line mode
python bot_cli.py status
python bot_cli.py send general "Hello everyone!"
```
### Available Commands