Redis Configuration

MudPi has a central event system that it uses to communicate new data and toggle components. The event system is built on Redis and needs to installed for MudPi to properly emit events. You can follow our redis installation guide if you have not yet installed it.

There are two options required in the redis settings: host and port.

{
    "redis": {
        "host": "127.0.0.1",
        "port": 6379
    }
}

Settings

OptionTypeRequiredDescription
host[String]YesIP address of redis server. Usually 127.0.0.1
port[Integer]YesPort of redis server. Usually 6379