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
Layla cc64344845
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing
drone ci work
2023-04-23 00:52:18 -04:00
.devcontainer Plugins, Bugfixes & Cleanup 2023-03-31 20:21:49 +00:00
.github/workflows Specify ubuntu version 2023-04-02 23:49:28 -04:00
app Discord Components & Role Selection (#5) 2023-04-01 01:23:37 -04:00
common Discord Components & Role Selection (#5) 2023-04-01 01:23:37 -04:00
core Discord Components & Role Selection (#5) 2023-04-01 01:23:37 -04:00
discord Implement Persentance with SQLite3 (#6) 2023-04-01 03:48:01 -04:00
events Discord Components & Role Selection (#5) 2023-04-01 01:23:37 -04:00
mastodon Cleanup 2023-03-31 20:49:50 +00:00
modules Implement Persentance with SQLite3 (#6) 2023-04-01 03:48:01 -04:00
persistence Cleanup DB work 2023-04-01 22:25:54 +00:00
.drone.yml drone ci work 2023-04-23 00:52:18 -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 Implement Persentance with SQLite3 (#6) 2023-04-01 03:48:01 -04:00
go.sum Implement Persentance with SQLite3 (#6) 2023-04-01 03:48:01 -04:00
LICENSE Initial commit 2022-10-27 01:55:23 +00:00
main.go Cleanup DB work 2023-04-01 22:25:54 +00:00
Makefile Implement Persentance with SQLite3 (#6) 2023-04-01 03:48:01 -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