Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeslayla/birdbot
Bird Bot is a discord bot for managing and organizing events for a small discord community
https://github.com/yeslayla/birdbot
Last synced: about 2 months ago
JSON representation
Bird Bot is a discord bot for managing and organizing events for a small discord community
- Host: GitHub
- URL: https://github.com/yeslayla/birdbot
- Owner: yeslayla
- License: mit
- Created: 2022-10-27T01:54:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-14T18:43:22.000Z (8 months ago)
- Last Synced: 2024-10-10T11:10:57.172Z (3 months ago)
- Language: Go
- Homepage: https://pkg.go.dev/github.com/yeslayla/birdbot
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE
Awesome Lists containing this project
README
# 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:
```bash
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:
```bash
docker run -it -v `pwd`:/var/lib/birdbot/ yeslayla/birdbot:latest
```