2019-03-27 15:57:38 +01:00
|
|
|
# Bot for [LBRY's Discord](https://chat.lbry.com)
|
2017-10-25 21:12:38 +02:00
|
|
|
(This README will be updated along with bot updates)
|
|
|
|
Features:
|
|
|
|
|
|
|
|
- Tipbot for LBC. Responds to `!tip`.
|
|
|
|
- Dynamic plugin loading with permission support.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
- node > 8.0.0
|
|
|
|
- npm > 0.12.x
|
2019-02-27 00:41:37 +01:00
|
|
|
- LBRYCrd (https://github.com/lbryio/lbrycrd/)
|
2017-10-25 21:12:38 +02:00
|
|
|
|
2019-02-27 00:41:37 +01:00
|
|
|
## Install the prerequisites
|
|
|
|
```
|
|
|
|
$ sudo apt-get install nodejs && apt-get update
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
$ wget https://github.com/lbryio/lbrycrd/releases/download/v0.12.4.0/lbrycrd-linux.zip
|
|
|
|
```
|
2017-10-25 21:12:38 +02:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2019-02-27 00:41:37 +01:00
|
|
|
Install LBRYCrd
|
|
|
|
```
|
|
|
|
$ unzip ~/lbrycrd-linux.zip
|
|
|
|
```
|
|
|
|
Follow the instructions on the LBRYCrds GitHub Repository to create a lbrycrd.conf and remember the username and password.
|
|
|
|
|
|
|
|
Start LBRYCrd
|
|
|
|
```
|
|
|
|
./lbrycrdd -server -daemon
|
|
|
|
```
|
|
|
|
|
|
|
|
Create a bot and get the bot's API Token: https://discordapp.com/developers/applications/me - https://i.imgur.com/gM8EpJe.png
|
2017-10-25 21:12:38 +02:00
|
|
|
|
2019-02-27 00:41:37 +01:00
|
|
|
Make sure the bot has "bot" flags in OAuth2
|
2017-10-25 21:12:38 +02:00
|
|
|
|
2019-02-27 00:41:37 +01:00
|
|
|
```
|
|
|
|
$ cd lbry-tipbot/config
|
|
|
|
```
|
|
|
|
Then
|
|
|
|
```
|
|
|
|
$ vim default.json.example
|
|
|
|
```
|
2019-10-05 07:44:00 +02:00
|
|
|
Input your bot's token, the channel ID for your bot command channel, and the username & password for LBRYCrd
|
|
|
|
. Then, Rename the configuration file to "default.json" with
|
2019-02-27 00:41:37 +01:00
|
|
|
|
|
|
|
```
|
2019-05-02 01:57:13 +02:00
|
|
|
$ mv default.json.example default.json
|
2019-02-27 00:41:37 +01:00
|
|
|
```
|
|
|
|
|
2019-05-02 01:57:13 +02:00
|
|
|
Then run npm install from within lbry-tipbot directory
|
2017-10-25 21:12:38 +02:00
|
|
|
```
|
|
|
|
npm install
|
2019-02-27 00:41:37 +01:00
|
|
|
node ~/lbry-tipbot/bot/bot.js
|
|
|
|
```
|
2019-10-05 07:44:00 +02:00
|
|
|
|
|
|
|
## License
|
|
|
|
[MIT](https://github.com/lbryio/lbry-tipbot/blob/master/LICENSE)
|