A bot that sends a link to today's Washington Post crossword puzzle (and a bit more)
How to start the bot:
- Setup the .env file as shown here
- Start with kool.dev as shown here (recommended)
- OR, start manually, see Start manually
DISCORD_TOKEN=your_token # REQUIRED
# OPTIONAL Only needed if running locally
# with non-default values
MONGO_HOST=your_hostname
MONGO_USER=your_username
MONGO_PASS=your_password
- (Install kool.dev:
curl -fsSL https://kool.dev/install | bash
) - Run the following command:
kool run dev
- Start the bot with
python src/bot.py
- Setup the .env file
- Install dependencies in
requirements.txt
- Start a MongoDB instance
- Start the bot with
python src/bot.py
Warning
Still in development, have not tested DB persistence yet. Use at your own risk 🤖
🚀 Start local dev environment:
kool run dev
🐚 Enter the shell of the dev environment (must be running)
kool run shell
🧹 Lint code:
kool run lint