{"id":31228540,"url":"https://github.com/robbrazier/bookfeed","last_synced_at":"2025-10-30T20:42:56.067Z","repository":{"id":312757753,"uuid":"1048640251","full_name":"RobBrazier/bookfeed","owner":"RobBrazier","description":"Book Release RSS, Atom and JSON Feed Generator. Currently supports Hardcover","archived":false,"fork":false,"pushed_at":"2025-09-20T21:35:39.000Z","size":379,"stargazers_count":2,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T23:31:56.630Z","etag":null,"topics":["atom-feed","hardcover","hardcover-api","json-feed","rss-feed"],"latest_commit_sha":null,"homepage":"https://bookfeed.robb.dev","language":"Go","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/RobBrazier.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":"2025-09-01T19:22:47.000Z","updated_at":"2025-09-20T21:35:41.000Z","dependencies_parsed_at":"2025-09-04T21:29:46.183Z","dependency_job_id":"130d1746-20bc-450c-86d7-b98e3384427d","html_url":"https://github.com/RobBrazier/bookfeed","commit_stats":null,"previous_names":["robbrazier/hardcover-rss","robbrazier/hardcover-feed","robbrazier/bookfeed"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RobBrazier/bookfeed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2Fbookfeed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2Fbookfeed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2Fbookfeed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2Fbookfeed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobBrazier","download_url":"https://codeload.github.com/RobBrazier/bookfeed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2Fbookfeed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276361144,"owners_count":25628853,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-22T02:00:08.972Z","response_time":79,"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":["atom-feed","hardcover","hardcover-api","json-feed","rss-feed"],"created_at":"2025-09-22T06:58:22.660Z","updated_at":"2025-10-30T20:42:56.052Z","avatar_url":"https://github.com/RobBrazier.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BookFeed\n\nA Go application that generates standardized RSS/Atom/JSON feeds for book tracking and review platforms.\n\n## Supported Providers\n\n### Hardcover.app (Current)\nThis service provides feeds for recent book releases, author releases, series releases, and personalized user feeds from Hardcover.app.\n\n### Future Provider Support\nThe application is architected to potentially support additional book tracking platforms in the future.\n\n## Features\n\n- Multiple output formats: RSS, Atom, and JSON\n- Rate-limited API endpoints for public access\n\n### Hardcover\n- Recent book releases feed\n- Author-specific releases feed\n- Series-specific releases feed\n- Personalized user feeds based on reading history\n\n## Prerequisites\n\n- Go 1.25+\n- Provider API token (for development - Hardcover token currently required)\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine.\n\n### Environment Setup\n\nCopy the example environment file and configure your settings:\n\n```bash\ncp .env.example .env\n```\n\nEdit the `.env` file to set your configuration:\n- `PORT`: The port to run the server on (default: 8000)\n- `HARDCOVER_TOKEN`: Your Hardcover API token (required for development)\n\n### Installation\n\nInstall dependencies:\n\n```bash\ngo mod tidy\n```\n\n### Running the Application\n\nRun directly with Go:\n\n```bash\ngo run cmd/api/main.go\n```\n\nOr use Just (if installed):\n\n```bash\njust run\n```\n\nFor development with live reload:\n\n```bash\njust dev\n```\n\n### Building\n\nTo build a binary:\n\n```bash\nmkdir dist\ngo build -o dist/bookfeed cmd/api/main.go\n```\n\nOr with Just:\n\n```bash\njust build\n```\n\n### Testing\n\nRun tests:\n\n```bash\ngo test ./... -v\n```\n\nOr with Just:\n\n```bash\njust test\n```\n\n## Usage\n\nOnce running, the application exposes the following endpoints:\n\n### Recent Releases\n- `GET /hc/recent.atom` - Recent releases in Atom format\n- `GET /hc/recent.rss` - Recent releases in RSS format\n- `GET /hc/recent.json` - Recent releases in JSON format\n\n### Author Releases\n- `GET /hc/author/{author}.atom` - Specific author's releases in Atom format\n- `GET /hc/author/{author}.rss` - Specific author's releases in RSS format\n- `GET /hc/author/{author}.json` - Specific author's releases in JSON format\n\n### Series Releases\n- `GET /hc/series/{series}.atom` - Specific series' releases in Atom format\n- `GET /hc/series/{series}.rss` - Specific series' releases in RSS format\n- `GET /hc/series/{series}.json` - Specific series' releases in JSON format\n\n### Personalized User Feeds\n- `GET /hc/me/{username}.atom` - Personalized releases based on user's reading history in Atom format\n- `GET /hc/me/{username}.rss` - Personalized releases based on user's reading history in RSS format\n- `GET /hc/me/{username}.json` - Personalized releases based on user's reading history in JSON format\n- `GET /hc/me/{username}.atom?filter=author` - Filter to only show author releases\n- `GET /hc/me/{username}.atom?filter=series` - Filter to only show series releases\n\n### Development Tasks\n\nUpdate the GraphQL schema from the Hardcover API:\n\n```bash\njust downloadSchema\n```\n\nGenerate Go code from GraphQL schema:\n\n```bash\njust generate\n```\n\n## Deployment\n\nThe application can be deployed as a standalone binary or Docker container. It requires the `PORT` environment variable to be set.\n\n### Docker\n\nBuild the Docker image:\n\n```bash\ndocker build -t bookfeed .\n```\n\nRun with Docker:\n\n```bash\ndocker run -p 8000:8000 bookfeed\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbrazier%2Fbookfeed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobbrazier%2Fbookfeed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbrazier%2Fbookfeed/lists"}