https://github.com/tetafro/feed-bot
RSS to telegram bot
https://github.com/tetafro/feed-bot
rss telegram
Last synced: 5 months ago
JSON representation
RSS to telegram bot
- Host: GitHub
- URL: https://github.com/tetafro/feed-bot
- Owner: tetafro
- Created: 2018-12-15T11:01:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-10-19T12:57:20.000Z (8 months ago)
- Last Synced: 2025-10-19T18:54:11.503Z (8 months ago)
- Topics: rss, telegram
- Language: Go
- Homepage:
- Size: 176 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Feed bot
[](https://codecov.io/gh/tetafro/feed-bot)
[](https://goreportcard.com/report/github.com/tetafro/feed-bot)
[](https://github.com/tetafro/feed-bot/actions)
Telegram bot that reads RSS feeds and sends them to users.
## Build and run
Create a bot and get Telegram API token from the bot called `@botfather`.
Copy and populate config
```sh
cp config.example.yaml config.yaml
```
Start
```sh
make build run
```
## Deploy
Normally deploy is done by Github actions.
Manual deploy
```sh
SSH_SERVER=10.0.0.1:22 \
SSH_USER=user \
make deploy
```
## Encrypted config
Encrypt
```sh
echo "password" > .vault_pass.txt
ansible-vault encrypt --output config.yaml.vault config.yaml
```
Edit
```sh
EDITOR='code --wait' \
ansible-vault edit config.yaml.vault
```