Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 613 Bytes

File metadata and controls

39 lines (25 loc) · 613 Bytes

Contributing

Contributions are welcome.

Developer setup

Clone the repository

git clone https://github.com/torchbox/wagtail-makeup

Create a virtual environment and install the dependencies

python3 -m venv venv
source venv/bin/activate
pip install -e ".[testing,development]"

Pre-commit

This project uses pre-commit to run some checks before committing code changes.

Install the pre-commit hooks:

pre-commit install

Do some work

Make some changes or add new features.

Run the tests

python runtests.py