🚀 chore(Makefile): add make targets to install backend and frontend dependencies

The Makefile now has two new targets, `install_backend` and `install_frontend`, which install the dependencies for the backend and frontend respectively. This makes it easier for developers to set up the project as they can now run `make init` to install the pre-commit hooks and all dependencies.
This commit is contained in:
Gabriel Almeida 2023-05-28 16:36:57 -03:00
commit 4848759aeb

View file

@ -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 \