-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Format example json comments to be cleaner to read * Rewrite intro to better reflect new functionality
- Loading branch information
Showing
7 changed files
with
41 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[ | ||
{ | ||
"name": "myMaloja", // required, a name to identify your Client | ||
"name": "myMaloja", // required, a name to identify your Client | ||
"data": { | ||
"url": "https://domain.tld", // the base url of your maloja installation | ||
"apiKey": "string" // your maloja api key | ||
"url": "https://domain.tld", // required, the base url of your maloja installation | ||
"apiKey": "string" // required, your maloja api key | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[ | ||
{ | ||
"name": "default", // optional, friendly name for logs | ||
"clients": [], // optional, list of scrobble clients (by config name) that this source should scrobble to. Using an empty list or not including this property will make this source scrobble to all clients. | ||
"name": "default", // optional, friendly name for logs | ||
"clients": [], // optional, list of scrobble clients (by config name) that this source should scrobble to. Using an empty list or not including this property will make this source scrobble to all clients. | ||
"data": { | ||
"user": ["username@gmail.com","anotherUser@gmail.com"], // optional, list of users to scrobble tracks for | ||
"libraries": ["music","my podcasts"], // optional, list of libraries to scrobble tracks from | ||
"servers": ["myServer","anotherServer"] // optional, list of servers to scrobble tracks from | ||
"libraries": ["music","my podcasts"], // optional, list of libraries to scrobble tracks from | ||
"servers": ["myServer","anotherServer"] // optional, list of servers to scrobble tracks from | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[ | ||
{ | ||
"name": "default", // optional, friendly name for logs | ||
"clients": [], // optional, list of scrobble clients (by config name) that this source should scrobble to. Using an empty list or not including this property will make this source scrobble to all clients. | ||
"name": "default", // optional, friendly name for logs | ||
"clients": [], // optional, list of scrobble clients (by config name) that this source should scrobble to. Using an empty list or not including this property will make this source scrobble to all clients. | ||
"data": { | ||
"clientId": "string", // spotify client id -- required if not providing access token | ||
"clientSecret": "string", // spotify client secret -- required if not providing access token | ||
"accessToken": "string", // spotify access token -- required if not providing client id/secret | ||
"refreshToken": "string", // spotify refresh token -- recommended to provide if not providing client id/secret | ||
"redirectUri": "http://localhost:9078/callback", // spotify redirect URI -- required only if not the default shown here. URI must end in "callback" | ||
"interval": 60 // optional, how long to wait before calling spotify for new tracks | ||
"clientId": "string", // spotify client id -- required if not providing access token | ||
"clientSecret": "string", // spotify client secret -- required if not providing access token | ||
"accessToken": "string", // spotify access token -- required if not providing client id/secret | ||
"refreshToken": "string", // spotify refresh token -- recommended to provide if not providing client id/secret | ||
"redirectUri": "http://localhost:9078/callback",// spotify redirect URI -- required only if not the default shown here. URI must end in "callback" | ||
"interval": 60 // optional, how long to wait before calling spotify for new tracks | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[ | ||
{ | ||
"name": "default", // optional, friendly name for logs | ||
"clients": [], // optional, list of scrobble clients (by config name) that this source should scrobble to. Using an empty list or not including this property will make this source scrobble to all clients. | ||
"name": "default", // optional, friendly name for logs | ||
"clients": [], // optional, list of scrobble clients (by config name) that this source should scrobble to. Using an empty list or not including this property will make this source scrobble to all clients. | ||
"data": { | ||
"user": ["username@gmail.com","anotherUser@gmail.com"], // optional, list of users to scrobble tracks for | ||
"libraries": ["music","my podcasts"], // optional, list of libraries to scrobble tracks from | ||
"servers": ["myServer","anotherServer"] // optional, list of servers to scrobble tracks from | ||
"libraries": ["music","my podcasts"], // optional, list of libraries to scrobble tracks from | ||
"servers": ["myServer","anotherServer"] // optional, list of servers to scrobble tracks from | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters