Issues and pull requests are more than welcome.
We recommand using uv as project manager for development.
See https://docs.astral.sh/uv/getting-started/installation/ for installation
dev install
git clone https://github.com/stac-utils/stac-fastapi.git
cd stac-fastapi
uv sync --devpre-commit
This repo is set to use pre-commit to run ruff, pydocstring and mypy when committing new code.
uv run pre-commit install
# If needed, you can run pre-commit script manually
uv run pre-commit run --all-files git clone https://github.com/stac-utils/stac-fastapi.git
cd stac-fastapi
# Build docs
uv run --group docs mkdocs build -f docs/mkdocs.ymlHot-reloading docs:
uv run --group docs mkdocs serve -f docs/mkdocs.yml --livereloadTo manually deploy docs (note you should never need to do this because GitHub Actions deploys automatically for new commits.):
# deploy
uv run --group docs mkdocs gh-deploy -f docs/mkdocs.yml