A bot that provides with informations and helps with a few stuffs.
- Clone the repo. Then setup virtual environment and install all the requirments from
requirements.txt. - Create a
config.pyin the root of the directory and configure it according to the following settings:
token: str = "yourbot.token.here"
owner_ids: set[int] = {...}
prefix: str = '...'
postgresql: str = 'postgresql://user:password@host/database' # use your db info
webhook_url: str = "https://discord.com/api/webhooks/<id>/<token>"- Setup database tables with
python3 manage.py --setup-db. - Insert the cog configurations in table
cog_configaccording the schemas in the cog files.