telegram-rss-bot
telegram-rss-bot copied to clipboard
RSS bot for telegram written in Go
https://github.com/0x111/telegram-rss-bot/blob/master/commands/command.go As a manpage.
Where is the data stored? Also document in readme. `/code/bot.db` + config from ENV?
Right now, feed items are posted in the order they are seen in, posting newer items first, and older items later. It makes sense to do the reverse. Getting more...
Current state: Nothing happens when a feed is added. Every time the feed is refreshed, depending on the config, 2 items get posted to the channel, until all old items...
Right now it's: `feed_name - content - feed_item_link`. Place the name and link on a separate line. In markdown, I'd imagine it to look like this: ``` [feed_name](feed_link): [Post](feed_item_link) content...
Right now, we have a .db file where we store all the data in a sqlite database format. This works well, because users don't need to run a separate database...
The implementation was done in a more of personal look, so I did not think about this while development. At the moment, we are checking if the feed already exists...
I added update command, i figured it would be useful.