You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Charles Zhang 25eb85f4d0 init 2 years ago
.vscode Dockerized local development environment 2 years ago
db Dockerized local development environment 2 years ago
logs Dockerized local development environment 2 years ago
src init 2 years ago
.dockerignore Dockerized local development environment 2 years ago
.eslintrc Dockerized local development environment 2 years ago
.gitattributes add database function with openDB 2 years ago
.gitignore Dockerized local development environment 2 years ago
.prettierrc Dockerized local development environment 2 years ago
Dockerfile Dockerized local development environment 2 years ago
README.md Dockerized local development environment 2 years ago
docker-compose.yml Dockerized local development environment 2 years ago
index.ts Dockerized local development environment 2 years ago
package.json init 2 years ago
tsconfig.json init 2 years ago
yarn.lock init 2 years ago

README.md

Codey Bot

Required environment variables

  • BOT_TOKEN: the token found in the bot user account.
  • NOTIF_CHANNEL_ID: the ID of the channel the bot will send system notifications to.

Prerequisites

Running the bot locally

  1. Build docker image: yarn image:build
  2. Start container in detached mode: yarn start
  3. View and follow console output: yarn logs

Other usage

  • Stop the container: yarn stop
  • Stop and remove the container: yarn clean
  • Restart the container: yarn restart
  • Fresh build and restart: yarn image:build && yarn clean && yarn start