Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doppioslash/simple-rss-twitter-bot
A bot that tweets every new article from an RSS feed.
https://github.com/doppioslash/simple-rss-twitter-bot
Last synced: 9 days ago
JSON representation
A bot that tweets every new article from an RSS feed.
- Host: GitHub
- URL: https://github.com/doppioslash/simple-rss-twitter-bot
- Owner: doppioslash
- License: mit
- Created: 2015-11-12T19:51:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-14T19:07:39.000Z (almost 9 years ago)
- Last Synced: 2024-08-02T14:08:20.294Z (3 months ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simple-rss-twitter-bot
### Description
This is a simple bot, that will grab an RSS feed and post every new article from it as a tweet.
It's based on [rss-twitter-bot](https://gitlab.com/hughr/rss-twitter-bot). I added a configuration file, and if I can make it work deployment on Docker.### Instructions
1. create the account you want to tweet from on twitter
2. create a twitter app
3. copy the default-config.json to config.json
4. fill in the data
5. run `node app.js`### Deploy with Docker
You'll need a private docker repo, or your app's keys will be visible to the world.1. as above, fill in the config file, make sure it's in the same dir as the rest
2. `docker build -t /: .`
3. `docker push /`
4. then on the remote server `docker login`
5. `docker pull /`
6. `docker run --name -p 5693:5693 -P -t -i /:`That should do it. You may want to run it detached.