Template for a Python API project
Clone this template
git clone git@github.com:SamWarden/pyapi-template.git appname
cd appname
git remote rename origin templateAdd origin
git remote add origin GIT_URIInstall its dependencies
uv venv
source .venv/bin/activate
uv sync --all-groups --all-extrasInstall pre-commit hook to automatically lint your project
pre-commit installTo sync changes with the template just execute
git pull template