From 49532273916781ae966d89be79f9ec7d93dbc4fa Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 10 Apr 2025 14:23:24 -0300 Subject: [PATCH] chore: Update Makefile to include PostgreSQL in backend installation (#7561) fix: update Makefile to include 'postgresql' in backend installation command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 657258ab8..33c12cb9a 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ reinstall_backend: ## forces reinstall all dependencies (no caching) install_backend: ## install the backend dependencies @echo 'Installing backend dependencies' - @uv sync --frozen $(EXTRA_ARGS) + @uv sync --frozen --extra "postgresql" $(EXTRA_ARGS) install_frontend: ## install the frontend dependencies @echo 'Installing frontend dependencies'