Bird Bot is a discord bot for managing and organizing events for a small discord community https://pkg.go.dev/github.com/yeslayla/birdbot
Go to file
2024-03-04 00:46:05 +01:00
.devcontainer Plugins, Bugfixes & Cleanup 2023-03-31 20:21:49 +00:00
.github/workflows Update go version in workflows 2024-03-04 00:46:05 +01:00
app Fix hardcoded config path 2023-06-19 04:09:19 -04:00
core Update Packages, Add Status Command, and Bugfixes (!8) 2024-01-14 20:17:43 +01:00
discord Fix Component Button Crash When Used With Commands (!6) 2023-06-21 19:45:57 -04:00
mastodon Cleanup 2023-03-31 20:49:50 +00:00
modules Update Packages, Add Status Command, and Bugfixes (!8) 2024-01-14 20:17:43 +01:00
persistence Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04:00
.gitignore Initial commit 2022-10-27 01:55:23 +00:00
Dockerfile Move to Golang specific container (#9) 2023-04-02 23:16:36 -04:00
go.mod Standard updates 2024-03-04 00:42:06 +01:00
go.sum Standard updates 2024-03-04 00:42:06 +01:00
LICENSE Initial commit 2022-10-27 01:55:23 +00:00
main.go Standard updates 2024-03-04 00:42:06 +01:00
Makefile Update Packages, Add Status Command, and Bugfixes (!8) 2024-01-14 20:17:43 +01:00
ReadMe.md Standard updates 2024-03-04 00:42:06 +01:00
sample_config.yaml Update Packages, Add Status Command, and Bugfixes (!8) 2024-01-14 20:17:43 +01:00

Bird Bot

Bird Bot is a discord bot for managing and organizing events for a small discord community.

Features

  • Creating text channels for events
  • Delete/archive text channels after events
  • Notifying when events are created & cancelled
  • Role selection
  • Plugin support

Usage

To get up and running, install go and you can run make run!

Using Docker

The container is expecting the config file to be located at /etc/birdbot/birdbot.yaml. The easily solution here is to mount the config with a volume.

Example:

docker run -it -v `pwd`:/etc/birdbot yeslayla/birdbot:latest

In this example, your config is in the current directory and call birdbot.yaml

Persistant Data

The default location for container data is /var/lib/birdbot/ so you can mount it like:

Example:

docker run -it -v `pwd`:/var/lib/birdbot/ yeslayla/birdbot:latest