hakase-discord

hakase is a collection of helpful utilities for class chatrooms, including an assignment due date reminder, study session scheduler, and more. It is currently under development. This repository holds the Discord Bot, built with Go. The backend API is in a beta state, with a Slack App planned in the future.
Backend API: https://github.com/dragonejt/hakase
Table of Contents
- Local Development
- Building and Running
- Testing
- Linting and Formatting
- Deployment
Local Development
Building and Running
Local development with hakase-discord is relatively simple. The only command you have to run is:
go run hakase-discord.go
You do have to have some environment variables in place. hakase does not directly read from a .env file, but you can configure environment variables or reference a .env file through IDE launch options. Otherwise, you can set environment variables locally.
ENV="development"
DISCORD_BOT_TOKEN="from Discord Dev Portal"
BACKEND_URL="https://hakase.dragonejt.dev" # if self-hosting, change URL to self-hosted backend
BACKEND_API_KEY="from Backend API"
NATS_URL="nats://"
STREAM_NAME="hakase_discord_local" # different from production stream name
Testing
For testing, the following command should be run, with the above environment variables in place:
go test ./...
This uses Go's built-in test runner which will discover and test all _test.go files. The integrate.yml GitHub Actions workflow will run these tests with code coverage (-coverpkg=./... -coverprofile=coverage.txt).
If you are using VS Code, the VS Code Go extension will enable automatic test discovery and running in the Testing sidebar.
Go and the VS Code Go Extension automatically performs linting and formatting on save.
The integrate.yml GitHub Actions workflow will check for linting errors and formatting mistakes with golangci-lint.
Deployment
For deployment, hakase is built into a Docker image with nixpacks, and then deployed into a container via Dokku.
On the deployed docker container, the following environment variables should be set:
ENV="production"
DISCORD_BOT_TOKEN="from Discord Dev Portal"
BACKEND_URL="https://hakase.dragonejt.dev" # if self-hosting, change URL to self-hosted backend
BACKEND_API_KEY="from Backend API"
NATS_URL="nats://"
STREAM_NAME="hakase_discord" # different from development stream name
SENTRY_DSN="from Sentry"
Dokku does support dockerized message queues, and hakase uses a dockerized NATS instance in production.
Continuous Delivery
hakase has a continuous delivery GitHub Actions workflow, deliver.yml. The steps taken are summarized:
- Build a Docker image with the Heroku Cloud Native Buildpacks
- The nixpacks GitHub Action uploads the built image to GitHub Container Registry
- The built docker image is deployed as a docker container via the Dokku GitHub Action
- A new Sentry release is created for monitoring with the Sentry Release GitHub Action.