This is a simple support bot that we use in our Discord Server to help users with their problems.
Ensure you have Python and pip installed on your machine.
Required Python version: 3.12.7
python3 --version # or python --version
-
Clone the project
git clone https://github.com/vtuberstv/support-bot.git
-
Navigate to the project directory
cd support-bot
-
Install dependencies
Using a Virtual Environment (venv)
python -m venv .venv
For Windows:
.\.venv\Scripts\activate
For macOS/Linux:
source .venv/bin/activate
pip3 install -r requirements.txt
Using Python directly
pip3 install -r requirements.txt
We welcome contributions! Please follow these steps to contribute:
- Fork the repository.
- Create a new branch (
git checkout -b feature/YourFeature
). - Make your changes.
- Commit your changes (
git commit -m "feat(feature-name): add new feature"'
). - Push to the branch (
git push origin feature/YourFeature
). - Create a new Pull Request.
Please ensure your pull request adheres to the Code of Conduct.
This project is licensed under the VTubersTV Collaborative License (VCL). See the LICENSE file for details.