mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-04-29 12:19:58 +00:00
23 lines
938 B
JSON
23 lines
938 B
JSON
{
|
|
// string specifies a directory location to log to.
|
|
// boolean FALSE means do not log to file
|
|
// boolean TRUE means log to working directory
|
|
"logPath": true, // optional
|
|
"interval": 60, // optional, number of seconds to wait before checking spotify for new tracks
|
|
"port": 9078, // optional, port for server to start on
|
|
"spotify": 'object or string', // can specify full spotify config object here OR a string location of json file OR do not include to use config dir location
|
|
// array of client configurations
|
|
"clients": [
|
|
{
|
|
"type": "maloja", // client name
|
|
"data": "/someLocation/aFile.json" // location to look for json configuration in
|
|
},
|
|
{
|
|
"type": "maloja", // client name
|
|
"data": {
|
|
// client configuration can also be an object
|
|
}
|
|
},
|
|
"maloja" // client can also be just the type if the configuration is located in the default configuration directory
|
|
]
|
|
}
|