OpenVoiceOS / ovos-messagebus

ovos-core bus daemon

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OVOS MessageBus

messagebus service, the nervous system of OpenVoiceOS

Alternative implementations

Configuration

under mycroft.conf

{
  // The mycroft-core messagebus websocket
  "websocket": {
    "host": "0.0.0.0",
    "port": 8181,
    "route": "/core",
    "ssl": false,
    // in mycroft-core all skills share a bus, this allows malicious skills
    // to manipulate it and affect other skills, this option ensures each skill
    // gets its own websocket connection
    "shared_connection": true,
    // filter out messages of certain types from the bus logs
    "filter": false,
    // which messages to filter if filter is enabled
    "filter_logs": ["gui.status.request", "gui.page.upload"]
  }
}

About

ovos-core bus daemon

License:Apache License 2.0


Languages

Language:Python 98.7%Language:Dockerfile 1.3%