Files
NebulaShell/.gitignore
qwen.ai[bot] 138a8ffb7a Title: Update TCP HTTP server and plugin loader with enhanced security and error handling
Key features implemented:
- Updated .gitignore with cleaner Python and build artifact patterns
- Enhanced TcpHttpServer with improved exception handling for connection errors and better request parsing
- Added detailed error event emission for OSError and other exceptions in TCP server
- Improved plugin loader security with enhanced configuration file validation and error handling
- Added comprehensive logging for plugin loading and dependency injection processes
- Refined PL injection mechanism with stricter function name and route validation

The updates provide more robust error handling in the TCP server and strengthen security measures in the plugin loader while improving overall system stability.
2026-04-25 12:07:50 +00:00

26 lines
181 B
Plaintext

```
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
# Dependencies
.venv/
venv/
.env
.env.local
*.env.*
# Editors
.vscode/
.idea/
# Logs
*.log
# Build artifacts
dist/
build/
target/
```