DeerHacks Hackathon 2024 Discord Bot
- Run
pip install -r requirements.txt
to install dependencies - Add the required
.env
file with the schema specified below - Gather credentials from Discord Developer Portal and add it to the
.env
file
Mac/Linux
python3 app.py
Windows
py app.py
# Discord Bot Token taken from Discord Developer Portal
TOKEN=
# Prefix for commands
PREFIX="dh."
# Database credentials which have all user data (should be identical to database used in DeerHacks API)
DB_USER=
DB_PASS=
DB_NAME=
DB_HOST=