Skip to content

Latest commit

 

History

History
86 lines (59 loc) · 1.81 KB

contributing.md

File metadata and controls

86 lines (59 loc) · 1.81 KB

Step 1. Fork this repository to your GitHub

Step 2. Clone the repository from your GitHub

git clone https://github.com/[YOUR GITHUB ACCOUNT]/discord-bot.git

Step 3. Add this repository to the remote in your local repository

git remote add upstream "https://github.com/allen91wu/discord-bot"

You can pull the latest code in main branch through git pull upstream main afterward.

Step 4. Check out a branch for your new feature

git checkout -b [YOUR FEATURE]

Step 5. Install prerequisite

python3 -m pip install pipx
python3 -m pipx install invoke
python3 -m pipx install pipenv
python3 -m pipx ensurepath
  • pipx: for python tool management
  • pipenv: for dependency management
  • invoke: for task management

Step 6. Create your local Python virtual environment and install dependencies

inv env.init-dev

Step 7. Work on your new feature

Note that this project follows conventional-commit and bumps version based on it. Use the following command to commit your changes.

inv git.commit

Step 8. Run test cases

Make sure all test cases pass.

inv test

Step 9. Run test coverage

Check the test coverage and see where you can add test cases.

inv test.cov

Step 10. Reformat source code

Format your code through black and isort.

inv style.reformat

Step 11. Run style check

Make sure your coding style passes all enforced linters.

inv style

Step 12. Run security check

Ensure the packages installed are secure, and no server vulnerability is introduced

inv secure

Step 13. Create a Pull Request and celebrate 🎉