Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.03 KB

README.md

File metadata and controls

51 lines (32 loc) · 1.03 KB

Tweetstories GoDoc

Deploy

A small twitter bot designed to continuously delete all of an account's tweets which are older than one week.

This application was designed to run indefinitely on Heroku's "free" teir and will keep itsself alive via a small http server which pings itsself.

Setup

To use this bot you will need to create a new twitter app and set the following config variables

# Your twitter consumer key
TWITTER_CONSUMER_KEY

# Your twitter consumer secret
TWITTER_CONSUMER_SECRET

# Your twitter access token
TWITTER_ACCESS_TOKEN

# Your twitter access secret
TWITTER_ACCESS_SECRET

# The http port which the server will listen on
PORT

# The name of your app on heroku
HEROKU_NAME

Development

To build the bot run:

make

To run the bot run:

make run