Add dev make target for creating local dev environment

This commit is contained in:
Ethan Paul 2024-03-11 11:21:24 -04:00
parent 7a87f8ce6c
commit cad698670e
Signed by: enpaul
GPG Key ID: 9B6D99E4CFA31867
2 changed files with 4 additions and 4 deletions

View File

@ -17,3 +17,7 @@ image: ## Build image
push: image ## Build and publish image
podman push $(REPOSITORY):v$(SEMAPHORE_VERSION)
dev: ## Setup local dev environment
poetry install --with dev
poetry run pre-commit install

View File

@ -21,7 +21,3 @@ reorder-python-imports = "^3.12.0"
pylint = "^3.1.0"
pre-commit = "^3.6.2"
pre-commit-hooks = "^4.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"