{"id":21465836,"url":"https://github.com/Nilkee/bluesnews-full-rss","last_synced_at":"2025-10-04T19:31:59.412Z","repository":{"id":255890224,"uuid":"852417521","full_name":"ForAzens/bluesnews-full-rss","owner":"ForAzens","description":"A simple HTTP Server that exposes a RSS Feed of BluesNews by days instead of stories.","archived":false,"fork":false,"pushed_at":"2024-09-23T12:28:40.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-14T10:53:50.966Z","etag":null,"topics":["bluesnews","docker-compose","go","golang","goquery","rss"],"latest_commit_sha":null,"homepage":"","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/ForAzens.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}},"created_at":"2024-09-04T19:11:31.000Z","updated_at":"2024-09-23T12:28:44.000Z","dependencies_parsed_at":"2024-09-07T18:05:42.119Z","dependency_job_id":"d493ad22-7ac0-4acc-a075-9b2ea18d323a","html_url":"https://github.com/ForAzens/bluesnews-full-rss","commit_stats":null,"previous_names":["forazens/bluesnews-full-rss"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForAzens%2Fbluesnews-full-rss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForAzens%2Fbluesnews-full-rss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForAzens%2Fbluesnews-full-rss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForAzens%2Fbluesnews-full-rss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ForAzens","download_url":"https://codeload.github.com/ForAzens/bluesnews-full-rss/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235300537,"owners_count":18967773,"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","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":["bluesnews","docker-compose","go","golang","goquery","rss"],"created_at":"2024-11-23T08:12:20.422Z","updated_at":"2025-10-04T19:31:54.090Z","avatar_url":"https://github.com/ForAzens.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BlueNews Full RSS\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/ForAzens/bluesnews-full-rss)\n![GitHub License](https://img.shields.io/github/license/ForAzens/bluesnews-full-rss)\n\nA simple HTTP Server that exposes a RSS Feed of [BluesNews](https://www.bluesnews.com \"BluesNews\") by days instead of stories.\n\n## Table of Contents\n- [Motivation](#motivation)\n- [Installation](#Installation)\n\t- [Docker](#Docker)\n\t- [Building from source](#building-from-source)\n- [Usage](#Usage)\n\t- [Retrieving articles](#retrieving-articles)\n\t\t- [Docker usage](#docker-usage)\n- [Roadmap](#roadmap)\n- [License](#license)\n\n## Motivation\nThere are two big motivations for building this project:\n- **Learning Golang**: I've been toying with the language for a while, but never found out a problem where I could use it.\n- **\"Sane\" RSS feed from BlueNews**: Probably this is only an issue for me, but I couldn't stand how the different stories polluted my RSS feed.\n\n**A fair warning**: This project is a sort of a learning ground for me, so expect things not to work smoothly, at least until I start with the versioning and releasing.\n\n## Installation\nAt the moment, the only way to use this project is by cloning this repository:\n```bash\ngit clone https://github.com/ForAzens/bluesnews-full-rss.git\n```\nYou can start the server using Docker or manually building the source.\n\n### Docker\nThe simplest way of using it. You'll need to [install Docker](https://docs.docker.com/engine/install/) and, optionally, [Docker Compose](https://docs.docker.com/compose/install/).\n\nThen, in a terminal of the newly cloned repository:\n```bash\ndocker-compose up -d\n```\nDone! You should be able to see the RSS Feed in http://localhost:8080.\n\n### Building from source\nYou will need to have [Go](https://go.dev) installed in your system.\n\nThen, in a terminal open in the cloned repository:\n```bash\ngo mod download # Download dependencies\ngo build -o bluesnews-rss # Build a binary executable named bluesnews-rss\n```\n\nNow you have an executable in the same folder as the repository. The server can be started with:\n```bash\n./bluenews-rss --mode=serve\n```\n\n## Usage\n### Retrieving articles\nYou need to retrieve articles in some way, manually or with some sort of automation. There's a built-in command to do this:\n```bash\n./bluenews-rss --mode=fetch --lastDays=7\n```\n#### Docker Usage\nIf you use the Docker method of installation, it's already automated via a cronjob.\nEither way, if you want to trigger the fetch manually:\n```bash\ndocker-compose exec bluesnews-rss /app/bluesnews-full-rss --mode=fetch --lastDays=7\n```\n\n## Roadmap\n- [ ] Implement some testing to fix issues.\n- [ ] Publish the Docker image in some repository.\n- [ ] Publish the binary with Github Releases.\n...\n\n**Warning**: This roadmap can be altered at any moment, as this is just a hobby project.\n\n## License\n[MIT](https://github.com/ForAzens/bluesnews-full-rss/blob/main/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNilkee%2Fbluesnews-full-rss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FNilkee%2Fbluesnews-full-rss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FNilkee%2Fbluesnews-full-rss/lists"}