2020-11-09 10:18:14 +00:00
|
|
|
# VylBot App
|
|
|
|
|
|
|
|
Discord bot for Vylpes' Den Discord Server. Based on [VylBot Core](https://github.com/getgravitysoft/vylbot-core).
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
Download the latest version from the [releases page](https://github.com/Vylpes/vylbot-app/releases).
|
|
|
|
|
|
|
|
Copy the config template file and fill in the strings.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Implement the client using something like:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const vylbot = require('vylbot-core');
|
|
|
|
const config = require('./config.json');
|
|
|
|
|
|
|
|
const client = new vylbot.client(config);
|
|
|
|
client.start();
|
|
|
|
```
|
|
|
|
|
|
|
|
See the `docs` folder for more information on how to use vylbot-core
|