Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 390 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 390 Bytes

reddittotwitter

Bot that takes top posts on a given subreddit and tweets them

Postgres DB

CREATE TABLE rfunny (id SERIAL NOT NULL UNIQUE, title text, stamp TIMESTAMP DEFAULT Now());

Heroku Scale Worker

Heroku Hobby defaults to one web engine and zero workers. For this script to run, you need to spin up a worker to run the bot.

heroku ps:scale worker=1