A quirky chatter bot for Discord servers (currently serving VVIP Kitchen)
- Clone this repo
- Register for Cloudflare Workers AI
- Store the API keys and account ID provided by Cloudflare in your environment variables (check config.py code for reference)
- Login to Discord's developer portal and create a new application with bot enabled on it
- Create a
DISCORD_TOKENand store it in your environment variables of the same name (check config.py code for reference) - Install dependencies and run
git clone git@github.com:kashifulhaque/boo.git;
cd boo;
python3 -m venv .venv; source .venv/bin/activate; # OPTIONAL, but recommended
python -m pip install -r requirements.txt;
python main.py;