Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.

Latest commit

 

History

History
45 lines (34 loc) · 645 Bytes

README.md

File metadata and controls

45 lines (34 loc) · 645 Bytes

SauceBotClient

SauceBot Client for Twitch Messaging Interface(TMI)

Dependencies

  • Gson
  • JUnit (for testing)

How to run

  • Windows:
java -cp bin;lib\* com.saucebot.client.SauceBot <config file>
  • Linux:
java -cp bin:lib\* com.saucebot.client.SauceBot <config file>

Note: <config file> is the path to the JSON-formatted configuration file.

Configuration file

Format:

{
    "server": {
        "host": address,
        "port": port
    },
    
    "accounts": {
        username: password,
        username: password,
        ...
    }
}