Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 787 Bytes

CONTRIBUTING.md

File metadata and controls

40 lines (28 loc) · 787 Bytes

Contributing

Issues and pull requests are more than welcome.

dev install

$ git clone https://github.com/cogeotiff/rio-tiler-fs.git
$ cd rio-tiler-fs
$ pip install -e .["test","dev"]

pre-commit

This repo is set to use pre-commit to run isort, flake8, pydocstring, black ("uncompromising Python code formatter") and mypy when committing new code.

$ pre-commit install

Docs

$ git clone https://github.com/cogeotiff/rio-tiler-fs.git
$ cd rio-tiler-fs
$ pip install -e .["docs"]

Hot-reloading docs:

$ mkdocs serve -f docs/mkdocs.yml

To manually deploy docs (note you should never need to do this because Github Actions deploys automatically for new commits.):

$ mkdocs gh-deploy -f docs/mkdocs.yml