AI powered Git repository analysis and reporting.
This project is currently in its infancy. The readme will be updated to include more information as the project progresses.
If you find what you are seeing intriguing, go ahead and ⭐️ the repository to show your support.
- A compatible python version. It's recommended to use pyenv to manage python versions.
- pdm installed.
- pre-commit installed.
- hatch installed,
- Clone the repository
- Inside the repository, install the dependencies with:
This will create a virtual env under the git ignored
pdm install
.venv
folder and install all the dependencies. - Install the pre-commit hooks:
This will install the pre-commit hooks that will run before every commit. This includes linters and formatters.
pre-commit install && pre-commit install --hook-type commit-msg
To lint the codebase, run:
pdm run lint
Tip: You can also run the linters configured in pyproject.toml
inside your IDE of choice.
To run the tests, run:
pdm run test
To run the tests with tox
, run:
pdm run tox