DUMB API#
The DUMB API is the central communication layer between the DUMB Frontend and the backend service. It handles requests for logs, service management (start/stop), configuration updates, and health checks.
⚙️ Configuration Settings in dumb_config.json
#
Located in dumb.api_service
:
"enabled": true,
"process_name": "DUMB API",
"log_level": "INFO",
"host": "127.0.0.1",
"port": 8000
🔍 Configuration Key Descriptions#
enabled
– Whether the API service should run.process_name
– Used in process management and logs.log_level
– Logging verbosity for the API.-
host
: IP address for API to listen on.0.0.0.0
allows access to the API from all addresses -
port
: Port exposed for the API.