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:
parent
84ae7d448a
commit
9dc0a4b57d
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue