Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 776 Bytes

CONTRIBUTING.md

File metadata and controls

52 lines (36 loc) · 776 Bytes
  1. Fork the repository and clone it.
git clone https://github.com/chainyo/picaisso.git
  1. Use an environment with Python 3.10 installed. You can use pyenv or any other tool to manage your Python environments.

  2. Install pipx.

python -m pip install --user pipx
python -m pipx ensurepath
  1. Install poetry.
pipx install poetry
  1. Install Nox and inject nox-poetry.
pipx install nox
pipx inject nox nox-poetry
  1. Install the pre-commit hooks.
nox --session=pre-commit -- install
  1. Install the project dependencies.
poetry install
  1. Activate the project virtual environment.
poetry shell
  1. Create a new branch and start coding!
git checkout -b <branch-name>
code .