Skip to content

OpenVoiceOS/ovos-messagebus

Repository files navigation

OVOS MessageBus

messagebus service, the nervous system of OpenVoiceOS

Alternative implementations

  • OVOS Bus Server - Alternative C++ messagebus server implementation using WebSocket++

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 it's own websocket connection
    "shared_connection": true
  }
}