From 4848759aeb6bd0568df868bb588841092865c6ac Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Sun, 28 May 2023 16:36:57 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20chore(Makefile):=20add=20make=20?= =?UTF-8?q?targets=20to=20install=20backend=20and=20frontend=20dependencie?= =?UTF-8?q?s=20The=20Makefile=20now=20has=20two=20new=20targets,=20`instal?= =?UTF-8?q?l=5Fbackend`=20and=20`install=5Ffrontend`,=20which=20install=20?= =?UTF-8?q?the=20dependencies=20for=20the=20backend=20and=20frontend=20res?= =?UTF-8?q?pectively.=20This=20makes=20it=20easier=20for=20developers=20to?= =?UTF-8?q?=20set=20up=20the=20project=20as=20they=20can=20now=20run=20`ma?= =?UTF-8?q?ke=20init`=20to=20install=20the=20pre-commit=20hooks=20and=20al?= =?UTF-8?q?l=20dependencies.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index e03967b23..fdb09a13e 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,10 @@ all: help init: @echo 'Installing pre-commit hooks' git config core.hooksPath .githooks + @echo 'Installing backend dependencies' + make install_backend + @echo 'Installing frontend dependencies' + make install_frontend coverage: poetry run pytest --cov \