{"id":50585676,"url":"https://github.com/moritzheiber/feedme","last_synced_at":"2026-06-05T06:02:33.752Z","repository":{"id":350526228,"uuid":"1202195732","full_name":"moritzheiber/feedme","owner":"moritzheiber","description":"A no-nonsense feed aggregator with Fever API support","archived":false,"fork":false,"pushed_at":"2026-04-26T23:31:13.000Z","size":163,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T01:22:47.984Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moritzheiber.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-05T18:13:58.000Z","updated_at":"2026-04-26T23:31:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/moritzheiber/feedme","commit_stats":null,"previous_names":["moritzheiber/feedme"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/moritzheiber/feedme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moritzheiber%2Ffeedme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moritzheiber%2Ffeedme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moritzheiber%2Ffeedme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moritzheiber%2Ffeedme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moritzheiber","download_url":"https://codeload.github.com/moritzheiber/feedme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moritzheiber%2Ffeedme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33932043,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-05T06:02:33.061Z","updated_at":"2026-06-05T06:02:33.746Z","avatar_url":"https://github.com/moritzheiber.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# feedme\n\nA Fever API compatible RSS feed aggregator. Single-user, single binary, SQLite-backed.\n\n## Features\n\n- Fever API compatible -- works with any Fever API client (Reeder, Unread, etc.)\n- RSS, Atom, and JSON Feed support\n- Automatic feed fetching with configurable intervals and concurrent workers\n- Honors feed-provided TTL, syndication update intervals, skipHours, and skipDays\n- Supports `dc:creator` author fallback and `content:encoded`\n- Exponential backoff for failing feeds\n- Favicon extraction from feed metadata with HTML scraping fallback and ETag-based conditional refresh\n- OPML import and export\n- CLI for feed management\n\n## Quick start\n\n```sh\nexport FEEDME_EMAIL=\"you@example.com\"\nexport FEEDME_PASSWORD=\"your-password\"\n\nfeedme serve\n```\n\nThe server starts on `0.0.0.0:8080` by default. Point your Fever API client at `http://\u003chost\u003e:8080/` with the API key derived from `md5(email:password)`.\n\n## Configuration\n\nAll configuration is via environment variables. A `.env` file is supported.\n\n| Variable | Required | Default | Description |\n|---|---|---|---|\n| `FEEDME_EMAIL` | yes | | User email address |\n| `FEEDME_PASSWORD` | yes | | User password |\n| `FEEDME_DATABASE_URL` | no | `feedme.db` | Path to SQLite database file |\n| `FEEDME_HOST` | no | `0.0.0.0` | Server bind address |\n| `FEEDME_PORT` | no | `8080` | Server bind port |\n\n## CLI\n\n```\nfeedme serve [--host \u003cHOST\u003e] [--port \u003cPORT\u003e]\nfeedme feed add --url \u003cURL\u003e [--interval \u003cMINUTES\u003e]\nfeedme feed list\nfeedme feed update \u003cID\u003e [--url \u003cURL\u003e] [--interval \u003cMINUTES\u003e]\nfeedme feed remove \u003cID\u003e\nfeedme feed import \u003cFILE\u003e\nfeedme feed export \u003cFILE\u003e\n```\n\n`serve` starts the API server and the background feed fetcher. `--host` and `--port` override the corresponding environment variables.\n\n`feed add` adds a feed. The default fetch interval is 60 minutes.\n\n`feed import` reads an OPML file and adds any feeds not already present. `feed export` writes all feeds to an OPML file.\n\n## Docker\n\n```sh\ndocker build -t feedme .\ndocker run -d \\\n  -e FEEDME_EMAIL=\"you@example.com\" \\\n  -e FEEDME_PASSWORD=\"your-password\" \\\n  -v feedme-data:/data \\\n  -e FEEDME_DATABASE_URL=/data/feedme.db \\\n  -p 8080:8080 \\\n  feedme\n```\n\n## Building from source\n\n```sh\ncargo build --release\n```\n\nRequires Rust 1.85+ (edition 2024).\n\n## API\n\nImplements the [Fever API](https://web.archive.org/web/20230616124016/https://feedafever.com/api). Single endpoint: `POST /` with query parameters.\n\nAuthentication: include `api_key` in the POST form data. The key is `md5(email:password)`.\n\nA `GET /` discovery endpoint is available for clients that perform auto-detection (e.g. Unread).\n\nRead endpoints (via query parameters, combinable):\n\n- `?api` -- base authenticated request\n- `?api\u0026feeds` -- list feeds\n- `?api\u0026groups` -- list groups (always empty; groups are not supported)\n- `?api\u0026favicons` -- list favicons\n- `?api\u0026items` -- list items (supports `since_id`, `max_id`, `with_ids`)\n- `?api\u0026unread_item_ids` -- comma-separated unread item IDs\n- `?api\u0026saved_item_ids` -- comma-separated saved item IDs\n\nAll feed responses include an empty `feeds_groups` array for client compatibility.\n\nWrite endpoints (via POST form data):\n\n- `mark=item\u0026as=read\u0026id=\u003cID\u003e` -- mark item read\n- `mark=item\u0026as=saved\u0026id=\u003cID\u003e` -- save item\n- `mark=item\u0026as=unsaved\u0026id=\u003cID\u003e` -- unsave item\n- `mark=feed\u0026as=read\u0026id=\u003cID\u003e\u0026before=\u003cTIMESTAMP\u003e` -- mark feed items read before timestamp\n- `mark=group\u0026as=read\u0026id=\u003cID\u003e\u0026before=\u003cTIMESTAMP\u003e` -- mark all items read before timestamp (groups are ignored)\n- `unread_recently_read=1` -- mark recently read items as unread","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoritzheiber%2Ffeedme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoritzheiber%2Ffeedme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoritzheiber%2Ffeedme/lists"}