Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.03 KB

README.md

File metadata and controls

51 lines (35 loc) · 1.03 KB

Eat Um Up Twitter Bot

Prerequisites

Installing

  1. Clone the repo folder to your local machine and open it
git clone https://github.com/cewert/eatumup.git
cd eatumup
  1. Use NPM to install app dependencies
npm install
  1. Open default-config.js and replace all instances of CHANGEME with your Twitter API credentials.
module.exports = {
    consumer_key: 'CHANGEME',
    consumer_secret: 'CHANGEME',
    access_token: 'CHANGEME',
    access_token_secret: 'CHANGEME',
    timeout_ms: 60*1000, // optional HTTP request timeout to apply to all requests.
};
  1. When finished modifying default-config.js, save file as config.js

Deployment

Tell Node to run app.js

node app.js

Built With