Go to file
Vylpes 2da5e1aa75
Feature/vba 52 (#175)
* Add say command (#174)

Co-authored-by: Ethan Lane <ethan@vylpes.com>
Reviewed-on: https://gitea.vylpes.xyz/RabbitLabs/vylbot-app/pulls/174

* Add repo and funding link to about message (#176)

Reviewed-on: https://gitea.vylpes.xyz/RabbitLabs/vylbot-app/pulls/176

* Add other subreddits to bunny command

* Fix changes requested
2022-09-05 18:07:32 +01:00
.github v3.0 (#145) 2022-04-24 14:46:37 +01:00
.gitlab Update default.md 2021-01-15 18:15:44 +00:00
data v3.0.2 (#159) 2022-05-16 18:41:15 +01:00
docs v3.0 (#145) 2022-04-24 14:46:37 +01:00
src Feature/vba 52 (#175) 2022-09-05 18:07:32 +01:00
tests v3.0 (#145) 2022-04-24 14:46:37 +01:00
.dockerignore v3.0 (#145) 2022-04-24 14:46:37 +01:00
.env.template Feature/vba 52 (#175) 2022-09-05 18:07:32 +01:00
.gitignore v3.0 (#145) 2022-04-24 14:46:37 +01:00
.gitlab-ci.yml VylBot App 21.0.0 2021-02-17 18:12:45 +00:00
docker-compose.yml v3.0 (#145) 2022-04-24 14:46:37 +01:00
Dockerfile v3.0 (#145) 2022-04-24 14:46:37 +01:00
jest.config.json v3.0 (#145) 2022-04-24 14:46:37 +01:00
jest.setup.js v3.0 (#145) 2022-04-24 14:46:37 +01:00
ormconfig.json.template v3.0 (#145) 2022-04-24 14:46:37 +01:00
package.json Feature/vba 52 (#175) 2022-09-05 18:07:32 +01:00
README.md v3.0 (#145) 2022-04-24 14:46:37 +01:00
tsconfig.json v3.0 (#145) 2022-04-24 14:46:37 +01:00
yarn.lock Bump got from 11.8.3 to 11.8.5 (#164) 2022-07-06 12:12:00 +01:00

VylBot App

Discord bot for Vylpes' Den Discord Server.

Installation

Download the latest version from the releases page.

Copy the config template file and fill in the strings.

Requirements

  • NodeJS v16
  • Yarn

Usage

Install the dependencies and build the app:

yarn install
yarn build

Setup the database (Recommended to use the docker-compose file)

docker-compose up -d

Copy and edit the settings files

cp .env.template .env
# Edit the .env file

cp ormconfig.json.template ormconfig.json
# Edit the ormconfig.json file

NOTE: Make sure you do not check in these files! These contain sensitive information and should be treated as private.

Start the bot

yarn start

Alternatively, you can start the bot in development mode using:

yarn start --dev

Dev mode ensures that the default prefix is different to the production mode, in case you have both running in the same server.