Any contributions received are assumed to be covered by the BSD 3-Clause license. We might ask you to sign a Contributor License Agreement before accepting a large contribution. To learn more about Taguette, see the Taguette Website and the README in this repository. You can find an introduction to the codebase in ARCHITECTURE.md.
Please follow the Contributor Covenant in all your interactions with the project. If you would like to contribute to this project by modifying/adding to the code, please read the Best Practices for Contributing below and feel free to use GitLab's Web IDE for small changes (e.g. fixing a typo on the website) or for contributions to the code base the following workflow:
- Fork the project.
- Clone your fork to your computer.
- From the command line:
git clone https://gitlab.com/<USERNAME>/taguette.git
- From the command line:
- Change into your new project folder.
- From the command line:
cd taguette
- From the command line:
- [optional] Add the upstream repository to your list of remotes.
- From the command line:
git remote add upstream https://gitlab.com/remram44/taguette.git
- From the command line:
- Create a branch for your new feature.
- From the command line:
git checkout -b my-feature-branch-name
- From the command line:
- Make your changes.
- Avoid making changes to more files than necessary for your feature (i.e. refrain from combining your "real" merge request with incidental bug fixes). This will simplify the merging process and make your changes clearer.
- Commit your changes. From the command line:
git add <FILE-NAMES>
git commit -m "A descriptive commit message"
- While you were working some other changes might have gone in and break your stuff or vice versa. This can be a merge conflict but also conflicting behavior or code. Before you test, merge with master.
git fetch upstream
git merge upstream/master
- Test. Run the program and do something related to your feature/fix.
- Push the branch, uploading it to GitLab.
git push origin my-feature-branch-name
- Make a "merge request" from your branch here on GitLab.
Depending on the order that merge requests get processed, your MR may result in a conflict and become un-mergeable. To correct this, do the following from the command line:
Switch to your branch: git checkout my-feature-branch-name
Pull in the latest upstream changes: git pull upstream master
Find out what files have a conflict: git status
Edit the conflicting file(s) and look for a block that looks like this:
<<<<<<< HEAD
my awesome change
=======
some other person's less awesome change
>>>>>>> some-branch
Replace all five (or more) lines with the correct version (yours, theirs, or
a combination of the two). ONLY the correct content should remain (none of
that <<<<< HEAD
stuff.)
Then re-commit and re-push the file.
git add the-changed-file.cs
git commit -m "Resolved conflict between this and MR #123"
git push origin my-feature-branch-name
The merge request should automatically update to reflect your changes.
-
Before you start coding, open an issue so that the community can discuss your change to ensure it is in line with the goals of the project and not being worked on by someone else. This allows for discussion and fine-tuning of your feature and results in a more succinct and focused addition.
- If you are fixing a small glitch or bug, you may make a MR without opening an issue.
- If you are adding a large feature, create an issue so that we may give you feedback and agree on what makes the most sense for the project before making your change and submitting a MR (this will make sure you don't have to do major changes down the line).
-
Merge requests are eventually merged into the codebase. Please ensure they are:
- Well tested by the author. It is the author's job to ensure their code works as expected.
- Free of unnecessary log calls. Logging is important for debugging, but when a MR is made, log calls should only be present when there is an actual error or to record some important piece of information or progress.
-
If your code is untested, log-heavy, or incomplete, prefix your MR with "[WIP]", so others know it is still being tested and shouldn't be considered for merging yet. This way we can still give you feedback or help finalize the feature even if it's not ready for prime time.
That's it! Following these guidelines will ensure that your additions are approved quickly and integrated into the project. Thanks for your contribution!
This projects includes automated tests. Should you send us your changes in the form of a merge request on GitLab, the tests will be run automatically by GitLab CI to check that your version still works. You can also run the tests locally in a terminal:
python tests.py
Some tests control a web browser. You will need to install Chrome/Chromium or Firefox and get the corresponding webdriver (geckodriver for Firefox and chromedriver for Chrome/Chromium). You can then enable those tests by running:
TAGUETTE_TEST_WEBDRIVER=firefox python tests.py
# or
TAGUETTE_TEST_WEBDRIVER=chromium python tests.py
- Install the poetry plugin for pycharm: https://plugins.jetbrains.com/plugin/14307-poetry
- In PyCharm's menu: Run/Edit Configurations
- Add a new configuration by clicking the top-left plus icon or by pressing alt+insert on your keyboard.
- Select
Python
in the pop-up list (other options that show areShell Script
,Python tests
, etc.) - In Module Name type
taguette.main
- In Environment, Python interpreter, choose "Poetry (taguette)"
You can now just click on Run/Debug (if you only have one run configuration) or click on Run/Debug... and choose taguette.main to start the debugging.
This CONTRIBUTING.md was adapted from ProjectPorcupine's CONTRIBUTING.md
You are welcome to chat with us in our Element room or contact the maintainers directly at hi@taguette.org.