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
2023-06-19 03:51:13 -04:00
.devcontainer Plugins, Bugfixes & Cleanup 2023-03-31 20:21:49 +00:00
.github/workflows Fix drafting on release 2023-06-19 03:14:42 -04:00
app Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04:00
core Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04:00
discord Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04:00
mastodon Cleanup 2023-03-31 20:49:50 +00:00
modules Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04: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 Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04:00
go.sum Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04:00
LICENSE Initial commit 2022-10-27 01:55:23 +00:00
main.go Bugfix: Use correct config dir 2023-06-19 03:51:13 -04:00
Makefile Remove Common, Rework External Chat Support, & Bugfixes (!5) 2023-06-19 03:08:24 -04:00
ReadMe.md Improve docs 2023-04-02 05:13:12 +00:00
sample_config.yaml Discord Components & Role Selection (#5) 2023-04-01 01:23:37 -04: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
  • Notifying when events are created & cancelled
  • Delete text channels after events
  • Archive text channels after events
  • Create recurring weekly events
  • Role selection

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