{"id":43945788,"url":"https://github.com/onlyati/rss-collector","last_synced_at":"2026-02-07T03:03:12.695Z","repository":{"id":270277679,"uuid":"909850053","full_name":"onlyati/rss-collector","owner":"onlyati","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-23T13:32:32.000Z","size":309,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-25T03:17:04.373Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/onlyati.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-12-29T23:17:21.000Z","updated_at":"2025-12-23T13:32:29.000Z","dependencies_parsed_at":"2024-12-30T00:21:39.619Z","dependency_job_id":"16501df4-e39b-4ace-87a8-526116f651c0","html_url":"https://github.com/onlyati/rss-collector","commit_stats":null,"previous_names":["onlyati/rss-collector"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/onlyati/rss-collector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlyati%2Frss-collector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlyati%2Frss-collector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlyati%2Frss-collector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlyati%2Frss-collector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/onlyati","download_url":"https://codeload.github.com/onlyati/rss-collector/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlyati%2Frss-collector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29185116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T00:44:15.062Z","status":"online","status_checked_at":"2026-02-07T02:00:07.217Z","response_time":63,"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-02-07T03:03:11.541Z","updated_at":"2026-02-07T03:03:12.681Z","avatar_url":"https://github.com/onlyati.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RSS Collector\n\nThis is a project that I made for myself. This project contains three micro services that consist one service.\nWhy over complicated? Because it is a hobby/learning project. Feel free to use it, of course.\n\nSimplest way to find them on Dockerhub and make your own docker-compose based on [this](https://github.com/onlyati/rss-collector/blob/main/docker-compose.yaml) file.\n- https://hub.docker.com/r/onlyati/rss-collector\n- https://hub.docker.com/r/onlyati/rss-api\n- https://hub.docker.com/r/onlyati/rss-processor\n\n## What is this?\n\nI have made this project to collect some RSS feed for myself, but with a twist:\n```\n  .-----------.      .-------.      .-----------.      .------------.      .-----------.\n  | Collector | ---\u003e | Kafka | ---\u003e | Processor | ---\u003e | PostgreSQL | ---\u003e | REST  API |\n  |  service  |      '-------'      |  service  |      '------------'      |  service  |\n  '-----------'                     '-----------'                          '-----------'\n```\n\nAt the end this service run in my kubernetes cluster, the processor and REST service can be scaled up.\n\n## Environment variables for container\n\nFollowing environment variables can be used in all container:\n- `RSS_CONFIG_PATH`: If you specify a path and mount a config map there, it would be used.\n\nREST API service variables:\n- `RSS_DB_HOSTNAME`: PostgreSQL database address\n- `RSS_DB_PORT`: PostgreSQL port number\n- `RSS_DB_NAME`: Database name\n- `RSS_DB_USER`: User for the database\n- `RSS_DB_PW_PATH`: Path for a file which store the password (file can be mounted via secret)\n- `RSS_API_HOSTNAME`: Hostname where REST API listen\n- `RSS_API_PORT`: Port number where REST API listen\n- `RSS_API_AUTH_CONFIG`: Address for keycloak endpoint list, example https://{{Hostname}}/realms/{{Realm}}/.well-known/openid-configuration (specify \"nope\" to disable it)\n- `RSS_CORS_ORIGINS`: Origins list, separated by ',' for allowed origins\n- `RSS_CORS_METHODS`: Method list, separated by ',' for allowed methods\n\nCollector service variables:\n- `RSS_YOUTUBE_*`: List about Youtube channels that must be collected\n- `RSS_REDDIT_*`: List about Reddit threads that must be collected\n- `RSS_STANDARD_*`: Any RSS feed\n- `RSS_CRUNCHYROLL`: If it has value then Crunchyroll new anime feed is collected\n- `RSS_KAFKA_SERVER`: Kafka address\n- `RSS_KAFKA_TOPIC`: Kafka topic\n- `RSS_WAIT_SECONDS`: Wait time between two collections\n\nProcessor service variables:\n- `RSS_DB_HOSTNAME`: PostgreSQL database address\n- `RSS_DB_PORT`: PostgreSQL port number\n- `RSS_DB_NAME`: Database name\n- `RSS_DB_USER`: User for the database\n- `RSS_DB_PW_PATH`: Path for a file which store the password (file can be mounted via secret)\n- `RSS_KAFKA_SERVER`: Kafka address\n- `RSS_KAFKA_TOPIC`: Kafka topic\n- `RSS_KAFKA_GROUP_ID`: Kafka consumer group is\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonlyati%2Frss-collector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fonlyati%2Frss-collector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonlyati%2Frss-collector/lists"}