davidkus / triviacrack-client

Command line client and bot for Trivia Crack.
MIT License
1 stars 0 forks source link

TriviaCrack Client CI Code Climate Test Coverage

A bot that plays the popular social game Trivia Crack. Running the bot will go through all games which are currently on your turn and play them to completion.

Installation

Using docker-compose:

$ docker-compose build
$ docker-compose run client

To build using docker:

$ docker build -t image-name .

Usage

Bot

To run the bot, execute:

$ bin/trivia-crack bot -e email -p password

To deploy with docker:

$ docker run -d -e EMAIL=email -e PASSWORD=password image-name

Manual Play

Included is a CLI client that lets you manually input the answers to questions. To run this client, execute:

$ bin/trivia-crack play -e email -p password

Note: Currently, images are not display (for questions which include images).

Contributing

  1. Fork it ( https://github.com/davidkus/triviacrack-client/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request