Go to file
2023-03-25 13:28:52 +00:00
.github remove workflow 2022-08-29 20:46:32 +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 Make bot check channel permissions before sending messages (#161) 2022-06-05 14:11:01 +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 Bump http-cache-semantics from 4.1.0 to 4.1.1 2023-03-25 13:27:35 +00: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
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
package.json Bump http-cache-semantics from 4.1.0 to 4.1.1 2023-03-25 13:27:35 +00:00
README.md v3.0 (#145) 2022-04-24 14:46:37 +01:00
renovate.json Update 'renovate.json' 2022-12-28 18:42:22 +00:00
tsconfig.json v3.0 (#145) 2022-04-24 14:46:37 +01:00
yarn.lock Bump json5 from 2.2.0 to 2.2.3 2023-03-25 13:28:52 +00: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.