Go to file
Ethan Lane 39231ddc16
All checks were successful
Test / build (push) Successful in 16s
WIP: Start of poll command tests
2024-05-13 16:23:51 +01:00
.forgejo/workflows Update actions/checkout action to v4 (#430) 2024-04-29 17:51:22 +01:00
.gitea Fix typo in PR template (#367) 2023-11-10 18:22:53 +00:00
.github Remove .github folder 2023-07-14 16:11:31 +01:00
data Fix typo in config list saying about messages for member events (#368) 2023-11-10 18:24:08 +00:00
database Add cache helper to update user cache every 30 minutes 2024-03-01 18:25:24 +00:00
docs v3.0 (#145) 2022-04-24 14:46:37 +01:00
scripts Switch to TypeORM's DataSource API (#299) 2023-05-26 17:59:22 +01:00
src WIP: Start of poll command tests 2024-05-13 16:23:51 +01:00
tests WIP: Start of poll command tests 2024-05-13 16:23:51 +01:00
.dockerignore v3.0 (#145) 2022-04-24 14:46:37 +01:00
.drone.yml Merge branch 'develop' into feature/258-fix-tests 2024-05-01 18:23:06 +01:00
.env.example Merge branch 'develop' into feature/258-fix-tests 2024-05-01 18:23:06 +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 Use forgejo runner 2024-04-28 15:49:54 +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
LICENSE Add licence (#304) 2023-06-16 17:56:37 +01:00
package-lock.json Update dependency jest-mock-extended to v3.0.7 (#432) 2024-05-06 16:11:58 +01:00
package.json Merge branch 'develop' into feature/258-fix-tests 2024-05-04 16:09:30 +01: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

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.