DeerHacks Hackathon 2024 Discord Bot
- Run
pip install -r requirements.txtto install dependencies - Add the required
.envfile with the schema specified below - Gather credentials from Discord Developer Portal and add it to the
.envfile
Mac/Linux
python3 app.pyWindows
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=