Hello! Welcome to meowBot! :3
Below can be seen a general outline of the things that meowBot can accomplish! Some of this is also for my future reference in case I ever want to actively work on this project again.
To install and actually run meowBot on your local machine, perform the following steps.
- Clone the repo to your local machine - store it in a Projects folder preferably.
- meowBot uses Poetry for dependency management. To install Poetry, run
pip install poetryin your terminal. - Once Poetry is installed, navigate to the directory where the repo is stored and run
poetry installto install all dependencies. - From here, create a
.envfile that contains the following fields.
BOT_TOKEN = "your_bot_token"
CLIENT_ID = "your_client_id"
- To run the bot, execute
poetry run python -m meowbot.bot.meowbotin your terminal.- You can also make use of the WIP Justfile to run common commands for you.