Micro-Feed an extremely small size feed sync service with beautiful GUI, GraphQL support(also a graphql playground) support. https://github.com/leopku/micro-feed
946315845
Extremely small binary size and docker image size.
Docker image size is <10MB.
- RSS 0.90
- Netscape RSS 0.91
- Userland RSS 0.91
- RSS 0.92
- RSS 0.93
- RSS 0.94
- RSS 1.0
- RSS 2.0
- Atom 0.3
- Atom 1.0
https://github.com/leopku/micro-feed/releases
https://hub.docker.com/r/leopku/micro-feed-community
- app root:
/app
- app config:
/app/micro-feed.toml
- database:
/app/micro-feed.db
. This can be changed by modifing/app/micro-feed.toml
http://localhost:8300/graphql
mutation {
createFeed(title: "my new feed", description: "feed detail", subscription: "https://path/of/my/feed/rss.xml")
}
After adding feed and waiting for a while (default 15min), entries would be synced from feed.
query {
entries {
id
title
link
}
}
query {
entry(id: 123) {
id
title
link
}
}
mutation {
markEntry(id: 123, mark: 1)
}
1
as read2
as unread