depurada la conexion

This commit is contained in:
2025-06-11 23:10:00 -06:00
parent 2dc118dc19
commit 7f4bfff8cb
8 changed files with 214 additions and 69 deletions

View File

@@ -57,3 +57,19 @@ api:
# If no name is provided, it defaults to "new_migration".
prisma-migrate-dev:
cd api && npx prisma migrate deploy
# --- Git helper para cambiar de rama por nombre directo ---
.PHONY: git-branch
git-branch:
@if not "$(BRANCH)"=="" ( \
git fetch github && \
git checkout $(BRANCH) \
) else ( \
echo USO: make git-branch BRANCH=nombre/rama && exit /b 1 \
)