{"id":17005428,"url":"https://github.com/erikkalkoken/feedhook","last_synced_at":"2026-05-10T14:32:15.150Z","repository":{"id":254587704,"uuid":"846292773","full_name":"ErikKalkoken/feedhook","owner":"ErikKalkoken","description":"A service for forwarding RSS and Atom feeds to Discord webhooks.","archived":false,"fork":false,"pushed_at":"2025-01-14T15:30:56.000Z","size":207,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-27T10:29:11.344Z","etag":null,"topics":["atom","discord","linux","rss","webhook"],"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/ErikKalkoken.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-08-22T22:56:58.000Z","updated_at":"2025-01-14T15:31:00.000Z","dependencies_parsed_at":"2024-08-27T22:12:46.149Z","dependency_job_id":"79f37e87-4a16-49ba-a060-8a7425abb5b8","html_url":"https://github.com/ErikKalkoken/feedhook","commit_stats":null,"previous_names":["erikkalkoken/feedforward","erikkalkoken/feedhook"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikKalkoken%2Ffeedhook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikKalkoken%2Ffeedhook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikKalkoken%2Ffeedhook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikKalkoken%2Ffeedhook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ErikKalkoken","download_url":"https://codeload.github.com/ErikKalkoken/feedhook/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244945595,"owners_count":20536295,"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":["atom","discord","linux","rss","webhook"],"created_at":"2024-10-14T04:46:23.948Z","updated_at":"2026-05-10T14:32:15.143Z","avatar_url":"https://github.com/ErikKalkoken.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# feedhook\n\nA service for forwarding RSS and Atom feeds to Discord webhooks.\n\n![GitHub Release](https://img.shields.io/github/v/release/ErikKalkoken/feedhook)\n[![CI/CD](https://github.com/ErikKalkoken/feedhook/actions/workflows/go.yml/badge.svg)](https://github.com/ErikKalkoken/feedhook/actions/workflows/go.yml)\n[![codecov](https://codecov.io/github/ErikKalkoken/feedhook/graph/badge.svg?token=jnRQ5oJ0AP)](https://codecov.io/github/ErikKalkoken/feedhook)\n![GitHub License](https://img.shields.io/github/license/ErikKalkoken/feedhook)\n\n## Content\n\n- [Key Features](#key-features)\n- [Installation](#installation)\n- [Update](#update)\n- [CLI tool](#cli-tool)\n- [Attributions](#attributions)\n\n## Key Features\n\n- Forward RSS and Atom feeds to webhooks on Discord\n- Respects Discord rate limits\n- Build for high throughput\n- Easy configuration\n- Single executable file\n- Restartable without data loss\n- Live statistics\n\n## Example\n\nHere is how a forwarded RSS item looks on Discord:\n\n![example](https://cdn.imgpile.com/f/s1P9K4y_xl.png)\n\n## Installation\n\nThis section explains how to install **feedhook** as a service on a Unix-like server.\n\n\u003e [!NOTE]\n\u003e This guide uses [supervisor](http://supervisord.org/index.html) for running feedhook as a service. Please make sure it is installed on your system before continuing.\n\nCreate a \"service\" user with disabled login:\n\n```sh\nsudo adduser --disabled-login feedhook\n```\n\nSwitch to the service user and move to the home directory:\n\n```sh\nsudo su feedhook\ncd ~\n```\n\nDownload and decompress the latest release from the [releases page](https://github.com/ErikKalkoken/feedhook/releases):\n\n```sh\nwget https://github.com/ErikKalkoken/feedhook/releases/download/vX.Y.Z/feedhook-X.Y.Z-linux-amd64.tar.gz\ntar -xvzf feedhook-X.Y.Z-linux-amd64.tar.gz\n```\n\n\u003e [!TIP]\n\u003e Please make sure update the URL and filename to the latest version.\n\nDownload configuration files:\n\n```sh\nwget https://raw.githubusercontent.com/ErikKalkoken/feedhook/main/config/supervisor.conf\nwget https://raw.githubusercontent.com/ErikKalkoken/feedhook/main/config/config.toml\n```\n\nSetup and configure:\n\n```sh\nchmod +x feedhook\ntouch feedhook.log\n```\n\nSetup your initial feeds and webhooks by adding them to `config.toml`.\n\nThen check your config is valid before continuing:\n\n```sh\n./feedhookcli check-config\n```\n\nWe also recommend running a test ping to ensure the webhooks are setup correctly:\n\n```sh\n./feedhookcli ping WEBHOOK\n```\n\nAdd feedhook to supervisor:\n\n```sh\nsudo ln -s /home/feedhook/supervisor.conf /etc/supervisor/conf.d/feedhook.conf\nsudo systemctl restart supervisor\n```\n\nRestart feedhook to start feedhook.\n\n```sh\nsudo supervisorctl restart feedhook\n```\n\n\u003e [!TIP]\n\u003e You can monitor your service with the `feedhookcli` tool. For example to get the current statistics you can run: `./feedhookcli stats`\n\n\u003e [!NOTE]\n\u003e Whenever you make changes to the configuration you need to restart the service to activate them.\n\n## Update\n\nStop the feedhook service.\n\n```sh\nsudo supervisorctl stop feedhook\n```\n\nLogin as your service user and move to the home directory:\n\n```sh\nsudo su feedhook\ncd ~\n```\n\nDownload the latest release and overwrite the outdated executables:\n\n```sh\nwget https://github.com/ErikKalkoken/feedhook/releases/download/vX.Y.Z/feedhook-X.Y.Z-linux-amd64.tar.gz\ntar -xvzf feedhook-X.Y.Z-linux-amd64.tar.gz\n```\n\nSwitch back to your sudo user and start the feedhook service again.\n\n```sh\nexit\nsudo supervisorctl start feedhook\n```\n\n## CLI tool\n\nFeedhook comes with a CLI tool for interacting with the running service. With it you can:\n\n- Check if the configuration is valid\n- See live statistics (e.g. how many items have been received from reach feed)\n- Make pings to configured webhooks (useful for testing)\n- Force a re-send of the latest feed item (useful for testing)\n- Restart the service (e.g. for reloading the config)\n\nTo see all commands please run the tool with the help flag: `feedhookcli -h`.\n\nYou can also get help for a specific command with the help flag: `feedhookcli COMMAND -h`.\n\n## Attributions\n\n- [Rss icons created by riajulislam - Flaticon](https://www.flaticon.com/free-icons/rss)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikkalkoken%2Ffeedhook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferikkalkoken%2Ffeedhook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikkalkoken%2Ffeedhook/lists"}