added some examples
This commit is contained in:
parent
db25612241
commit
64488f88ed
1 changed files with 45 additions and 1 deletions
46
services.js
46
services.js
|
|
@ -20,6 +20,16 @@ export const services = [
|
||||||
feedType: 'rss',
|
feedType: 'rss',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// ========================================================================
|
||||||
|
// blogging & writing
|
||||||
|
// ========================================================================
|
||||||
|
{
|
||||||
|
id: 'blog',
|
||||||
|
isActive: false,
|
||||||
|
feedUrl: 'https://your-blog.com/feed.xml', // direct url to your blog's rss feed
|
||||||
|
feedType: 'rss',
|
||||||
|
},
|
||||||
|
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
// music
|
// music
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
|
|
@ -37,6 +47,12 @@ export const services = [
|
||||||
feedUrlTemplate: 'https://api.listenbrainz.org/1/user/{userId}/listens?count=1',
|
feedUrlTemplate: 'https://api.listenbrainz.org/1/user/{userId}/listens?count=1',
|
||||||
feedType: 'listenbrainz',
|
feedType: 'listenbrainz',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'maloja',
|
||||||
|
isActive: false,
|
||||||
|
feedUrl: 'https://your-maloja-instance.com', // your maloja instance url
|
||||||
|
feedType: 'maloja',
|
||||||
|
},
|
||||||
|
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
// social media
|
// social media
|
||||||
|
|
@ -103,6 +119,20 @@ export const services = [
|
||||||
feedUrl: 'https://hardcover.app/api/graphql',
|
feedUrl: 'https://hardcover.app/api/graphql',
|
||||||
feedType: 'hardcover',
|
feedType: 'hardcover',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'storygraph',
|
||||||
|
isActive: false,
|
||||||
|
userId: 'your-username', // your storygraph username
|
||||||
|
feedUrlTemplate: 'https://app.thestorygraph.com/profile/{userId}.rss',
|
||||||
|
feedType: 'rss',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'goodreads',
|
||||||
|
isActive: false,
|
||||||
|
userId: 'your-user-id', // your goodreads user id (numbers from your profile url)
|
||||||
|
feedUrlTemplate: 'https://www.goodreads.com/user/updates_rss/{userId}',
|
||||||
|
feedType: 'rss',
|
||||||
|
},
|
||||||
|
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
// gaming
|
// gaming
|
||||||
|
|
@ -124,9 +154,23 @@ export const services = [
|
||||||
feedUrlTemplate: 'https://source.tube/{userId}.rss',
|
feedUrlTemplate: 'https://source.tube/{userId}.rss',
|
||||||
feedType: 'source.tube',
|
feedType: 'source.tube',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'gitlab',
|
||||||
|
isActive: false,
|
||||||
|
userId: 'your-username', // your gitlab username
|
||||||
|
feedUrlTemplate: 'https://gitlab.com/users/{userId}/activity.atom',
|
||||||
|
feedType: 'atom',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'codeberg',
|
||||||
|
isActive: false,
|
||||||
|
userId: 'your-username', // your codeberg username
|
||||||
|
feedUrlTemplate: 'https://codeberg.org/{userId}.rss',
|
||||||
|
feedType: 'rss',
|
||||||
|
},
|
||||||
|
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
// content creation
|
// video & streaming
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
{
|
{
|
||||||
id: 'youtube',
|
id: 'youtube',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue