Oracle is a discord bot that allows people to play akinator on discord but with a twist. The bot askes questions about the users in the server!!!
/enroll - enroll for the bot. This command askes you questions about yourself so that the bot can guess you
/forgetme - this command allows you to delete all of your data but this will make you not guessable by the bot
/guess - this starts the main game where the bot asks you questions and tries to guess the person you are thinking about
First you need to make a .env file with the following
DC_TOKEN # discord bot token
DB_User # username of postgres user who has acsess to the db
DB_User_PASS # password of the postgres user who has acsess to the dbdbyou might also need to also need to change the line 23 in utils.py to change the name of the db, host, or port
After that you can do the following to run the discord bot
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python3 main.pypy