1.2 KiB
1.2 KiB
How to contribute with this project
Getting started
- Star the repo, it will help me a lot.
- Make a fork for you.
- Clone the repo into your local machine.
- Create a new branch for your changes.
- Start hacking :-)
Not familiarized with the Python workflow?
- Be sure that you have Python 3 and virtualenv installed (if not, install them)
- Create a new virtualenv
python -m virtualenv env -p python3
- And activate it!
- Now it's time to install the dependencies.
pip install -r requirements.txt
- And now you're ready to hack.
Hacking
- Please, make sure your code is valid according the PEP8 specification
- If you want to add a new feature, not planned yet, open an issue first.
- Fix the issues tagged as bug, then we can fix the issues related with features and improvements.
- Add comments to your code, don't be shy.
Hacktoberfest plus
If this is your first time, follow this steps:
- Go to
Getting startedand follow the instructions there. - Push your changes into your fork.
- Open a PR across forks from your
devbranch to parent's repodevbranch (NOT MASTER) - Wait for feedback
Happy coding!