Attention

You’re viewing an old version of the L’ART Research Assistant documentation. The project has moved to https://lart.readthedocs.io/projects/research-assistant.

1. Contributing

1.1. What do I need to know to help?

If you are looking to helo with a code contribution, our project uses Python 3.10 and Eel for the backend, JavaScript for the frontend logic, and HTML & CSS (specifically, Bootstrap) for the frontend design (i.e., the user interface). If you don’t feel ready to make a code contribution yet, no problem! You can also checkout Documentation issues, help by Localisation and Adding Translations adding localised/translated versions for the research tasks we have already implemented, or thoroughly test the latest release in the app and submit high-quality bug reports to our issue tracker.

If you are interested in making a code contribution and would like to learn more about the technologies that we use, check out the list of free resources below.

1.2. How do I make a contribution?

Never made an open source contribution before? Wondering how contributions work in our project? Here’s a quick rundown!

  1. Find an issue that you are interested in addressing or a featue that you would like to add.

  2. Fork our lart-bangor/research-client repository.

    This means that you will have a copy of the repository under your-GitHub-username/research-client.

  3. Clone the repository to your local machine using git clone https://github.com/your-GitHub-username/research-client.git.

  4. Create a new branch for your fix using git checkout -b branch-name-here.

    The branch name should ideally follow the schema active/category/description-of-issue. For example to make improvements to the backend logic for the LSBQ, this could be active/lsbq/improve-backend-logic. For a new tutorial in the documentation it could be active/docs/basketweaving-tutorial.

    We generally follow the principle of using the active prefix for branches that have active development happening (except the three core branches main, dev, and docs). Once an issue developed on one of these “active” branches has either been merged into one of the core branches or abandoned (e.g. because someone coded themselves into a knot) we rename them with the prefix obsolete instead of active. This helps us to keep a good picture of what is happening on the repository.

    If you’re not sure about the ‘category’ or it doesn’t neatly fit to one sub-part of the project, you can just write active/general/description-of-issue.

  5. If you need to run the app, make test builds, or build the documentation locally, then install the required dependencies with pipenv install --dev (run from inside the project directory, where the file called Pipfile is located).

    If you don’t need to run the app, make test builds, or build the documentation locally, you can omit this.

  6. Make the appropriate changes for the issue you are trying to address or the feature that you want to add.

  7. Use git add insert-paths-of-changed-files-here to add the file contents of the changed files to the “staging area” git uses to manage the state of the project, also known as the index.

  8. Use git commit -m "Insert a short summary message of the changes made here" to store the contents of the changes in your “staging area” together with a descriptive message.

  9. Push the changes back to your remote repository (your-GitHub-username/research-client) by using git push origin branch-name-here (using the same branch name you decided on above).

  10. Submit a pull request to our upstream repository (lart-bangor/research-client).

  11. Title the pull request with a short description of the changes made, and if applicable the issue or bug number associated with your change.

    For example, you could title a pull request “Added additional check to LSBQ data model to resolve issue #1234” or “Add a basketweaving tutorial to the documentation”.

  12. In the description of the pull request, explain the changes you have made, any issues you think exist with the contribution you’re submitting, and ask any questions you have for the maintainer(s).

    It’s completely OK if your pull request is not perfect (no pull request is!) — your pull request will be reviewed and the reviewer will be able to help you fix any problems it might have and help you improve it if needed.

    In case you explicitly do not want to be credited for your contribution for any reason you should also mention this in your pull request — otherwise we will assume by default that you are happy for us to add your name and a link to your GitHub profile to the Contributors in furture versions of the User Guide.

  13. Wait for the pull request to be reviewed by a maintainer.

  14. Make any changes to the pull request that the reviewing maintainer recommends. They might ask you some questions to clarify some aspect of your pull request, and it’s totally okay for you to ask questions during this process as well.

  15. Celebrate your success after your pull request is merged!

For a more detailed guide on getting set up to work on the codebase, including if you need to install the dependencies (like git, python, etc.) so that you can test run and build the app locally, see our guide on Setting up the development environment.

1.3. Where can I go for help?

If you need help, you can ask questions on one of our GitHub Discussions sections. We’ll be happy to help where we can!

1.4. Code of Conduct

We currently have a very simple Code of Conduct:

  1. You are responsible for treating everyone on the project with respect and courtesy, regardless of who they are or what their attributes are.

  2. If you are the victim of any inappropriate behaviour or comments, we are here for your and will do the best to ensure that any abusers are reprimanded and/or removed, as may be appropriate in the situation.

  3. If you are abusive to anyone on the project we reserve the right to reprimand you or remove you from the project, as we may judge appropriate in the situation.

  4. Always remember that this is a community we build together 💪.

Note: These contributing guidelines have been adapted from a very neat template provided by Safia Abdalla.