Go to file
Vylpes 7decd28dc9
Feature/182 setup actions (#186)
* Create scripts

* Create github workflows

* Create initial DB migration script

* Make default bot prefix configurable

* Add bot token fetcher
2022-09-06 19:24:40 +01:00
.github Feature/182 setup actions (#186) 2022-09-06 19:24:40 +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
database/3.1/1662399171315-CreateBase/Up Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
docs v3.0 (#145) 2022-04-24 14:46:37 +01:00
scripts Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
src Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
tests v3.0 (#145) 2022-04-24 14:46:37 +01:00
.dev.env Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
.dockerignore v3.0 (#145) 2022-04-24 14:46:37 +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
.prod.env Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
.stage.env Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
docker-compose.prod.yml Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
docker-compose.stage.yml Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
docker-compose.yml Feature/182 setup actions (#186) 2022-09-06 19:24:40 +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.dev.json Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
ormconfig.prod.json Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
ormconfig.stage.json Feature/182 setup actions (#186) 2022-09-06 19:24:40 +01:00
package.json Feature/vba 77 (#178) 2022-09-05 18:10:04 +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.