-
-
Notifications
You must be signed in to change notification settings - Fork 4
Contribution Guide
Just Call Me Koko edited this page Mar 31, 2022
·
4 revisions
The guide will detail the steps necessary to develop, run, and test this bot locally as well as submit merge requests with your code changes.
If you are not a collaborator on the project, you will need to fork this repo and make local clone of your fork
This bot runs in Python which should allow you to setup any Python capable IDE you wish as long as you are using the correct version of Python
- Install desired Python IDE (VSCode is good)
- Install Git
- Install Python >=3.8
- Install dependencies with
pip install -r requirements.txt
The end goal of the bot project is to be able to run it in a Docker contain. For now, the bot must be run locally from the host filesystem itself. You can either run the bot with a direct Python command or in a Screen session
python discord_bot.py
or
screen -S discordbot python discord_bot.py
- Open the issue
- Click the link to create a branch from the issue
- Use the defaults for naming the branch, etc.
- Go to your editor and Fetch
- Switch to the branch you just created
- Work