Files
planilla/Makefile
josedario87 031d5c8344
Some checks failed
build-and-deploy / filter (push) Successful in 2s
Sync to GitHub / sync (push) Failing after 1s
build-and-deploy / build (push) Failing after 21s
build-and-deploy / deploy (push) Has been skipped
prisma actualizado. toma en cuenta las relaciones tareas-planilla y planilla-tareas
2025-05-30 15:52:54 -06:00

50 lines
1020 B
Makefile

.SHELLFLAGS = -Command
GITHUB_REPO_URL := https://github.com/josedario87/planilla.git
GITEA_REPO_URL := ssh://<GITEA_USER>@<GITEA_HOST>:<GITEA_PORT>/nucleo000/planilla.git
.PHONY: sync-to-github sync-to-gitea
estructura:
powershell -ExecutionPolicy Bypass -File ./dev/scripts/estructura.ps1
testdb:
docker compose -f api/dev/docker-compose.yml up -d
build:
docker compose build
up:
docker compose up -d
down:
docker compose down
todo: estructura build
sync-to-github:
@echo "Synchronizing to GitHub..."
@if ! git remote | grep -q '^github$$'; then \
echo "Adding GitHub remote..."; \
git remote add github $(GITHUB_REPO_URL); \
fi
git push github --all
git push github --tags
@echo "Synchronization to GitHub complete."
sync-to-gitea:
@echo "Synchronizing to Gitea..."
@if ! git remote | grep -q '^gitea$$'; then \
echo "Adding Gitea remote..."; \
git remote add gitea $(GITEA_REPO_URL); \
fi
git push gitea --all
git push gitea --tags
@echo "Synchronization to Gitea complete."