Musikcube
In order to use Musikcube configure it to accept websocket connections in server setup:
- Enable the Metadata Server
- Set a Password
Both of these settings are found in Musikcube -> (s)ettings -> server setup

The URL used by MS has the syntax:
[ws|wss]://HOST:[PORT]
The port is the same as shown in the server setup screenshot from above, under metadata server enabled. If no port is provided to MS it will default to 7905.
If no URL is provided to MS it will try to use ws://localhost:7905
Configuration
- ENV
- File
- AIO
| Environmental Variable | Required? | Default | Description |
|---|---|---|---|
MC_URL | No | ws://localhost:7905 | Use port set for metadata server |
MC_PASSWORD | Yes |
CONFIG/musikcube.json
[
{
"type": "musikcube",
"enable": true,
"name": "musikcube",
"data": {
"url": "ws://localhost:7905",
"password": "MY_PASSWORD"
}
}
]
or explore the schema with an example and live editor/validator
CONFIG_DIR/config.json
{
"sources": [
{
"type": "musikcube",
"enable": true,
"name": "musikcube",
"data": {
"url": "ws://localhost:7905",
"password": "MY_PASSWORD"
}
}
]
}
or explore the schema with an example and live editor/validator