This project is the python version of WeastCoastBot because my friends are picky and don't like nodejs
- Docker
- Create a
.env
file in/bot
by copying.env.example
and populating the variables with your values - Start up the app by running
docker-compose up --build
- this will run db migrations and hot reload for any code changes
- Start coding!
- in
/bot/cogs
copy the cog template atcog.py.example
and rename it to the command you'll be adding - Add a method that is named your command and annotate the method with
@commands.command()
- the parameters for this method will first be the discord context followed by command parameters
More info here - Discord Cogs
try a fresh build with
docker-compose down -v
docker-compose up --build