Go to file
Vylpes 6a00c49ef3
Feature/48 database (#114)
* Add database and default values

* Add ability to save a setting to the database

* Get commands and events to use database

* Setup and config command

* Update commands to check roles per server

* Different rules per server

Signed-off-by: Ethan Lane <ethan@vylpes.com>

* Different prefix per server

Signed-off-by: Ethan Lane <ethan@vylpes.com>

* Add verification system

Signed-off-by: Ethan Lane <ethan@vylpes.com>

* Disabled commands per server

* Add devmode for default prefix

* Update embeds

* Fix broken tests
2022-03-29 18:19:54 +01:00
.github Feature/12 create tests (#102) 2022-01-30 17:03:36 +00:00
.gitlab Update default.md 2021-01-15 18:15:44 +00:00
data Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
src Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
tests Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
.dockerignore Containerise bot (#107) 2022-02-05 21:09:27 +00:00
.env.template Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
.gitignore Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
.gitlab-ci.yml VylBot App 21.0.0 2021-02-17 18:12:45 +00:00
docker-compose.yml Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
Dockerfile Containerise bot (#107) 2022-02-05 21:09:27 +00:00
jest.config.json Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
jest.setup.js Feature/12 create tests (#102) 2022-01-30 17:03:36 +00:00
ormconfig.json.template Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
package.json Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
README.md VylBot App 21.0.0 2021-02-17 18:12:45 +00:00
tsconfig.json Feature/48 database (#114) 2022-03-29 18:19:54 +01:00
yarn.lock Feature/48 database (#114) 2022-03-29 18:19:54 +01:00

VylBot App

Discord bot for Vylpes' Den Discord Server. Based on VylBot Core.

Installation

Download the latest version from the releases page.

Copy the config template file and fill in the strings.

Usage

Implement the client using something like:

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