Add setup and update targets to the Makefile

Simply adds `make setup` as a shorthand for running the poetry command that
does the initial install for local development, and also `make update` to do
a package update. Simply aimed as handy extras for development.
This commit is contained in:
Dave Pearson 2023-02-09 16:18:34 +00:00
parent 84ae7d448a
commit 9dc0a4b57d
No known key found for this signature in database
GPG key ID: B413E0EF113D4ABF

View file

@ -68,3 +68,11 @@ build: docs-build-offline
.PHONY: clean
clean: clean-screenshot-cache clean-offline-docs
.PHONY: setup
setup:
poetry install --extras dev
.PHONY: update
update:
poetry update