Modifiying / Editing Code @ Development Guide:
You can not edit the main branch. So please open an issue before (Guide on Creating Issues). Once done open a merge request with the name created by GitLab (Guide on Creating Merge Requests).
- Merge Request Reviewers may not understand what the code is doing at first glance so please ensure you comment on what the code is doing at every stage.
- Please run
uv run ruff check --fixto find and fix any issues with your code changes before commiting your changes. - You need to have Git installed on your laptop/PC to be able to access different branches and etc. Git's Website
Abstract
- We ask for our none-web projects to be developed using Python.
- Please follow the intent where needed. Spaces should be set to
4.
Tip
Critcal/Key changes can occur which is why we reccomend you keep your merge request's source branch up-to-date. To do enter the command below into your IDE's Git Terminal:
Commit Naming:
Please look at the examples below on how to name your commits.
fix: {bug}feat: {new feature name}imprv: {imprv short description}qol: {qol short description}