debug output

This commit is contained in:
Stephan D
2026-03-16 14:33:56 +01:00
parent d4c3bb6629
commit 41782ac064
6 changed files with 210 additions and 34 deletions

View File

@@ -34,6 +34,9 @@
update \
update-backend \
update-frontend \
bump-version \
prepare-release \
tag-release \
test \
test-backend \
test-frontend \
@@ -125,6 +128,9 @@ help:
@echo " make update Update all dependencies (Go + Flutter)"
@echo " make update-backend Update Go dependencies only"
@echo " make update-frontend Update Flutter dependencies only"
@echo " make bump-version Bump ./version and frontend/pweb/pubspec.yaml"
@echo " make prepare-release Bump versions and create the release-prep commit for a PR"
@echo " make tag-release Create the local release tag from main after the PR is merged"
@echo " make test Run all tests (backend + frontend)"
@echo " make test-backend Run Go backend tests only"
@echo " make test-frontend Run Flutter tests only"
@@ -135,6 +141,15 @@ help:
@echo " make logs SERVICE=dev-ledger"
@echo " make rebuild SERVICE=dev-ledger"
bump-version:
@./ci/scripts/common/bump_version.sh
prepare-release:
@./ci/scripts/common/release.sh
tag-release:
@./ci/scripts/common/tag_release.sh
# First-time initialization
init:
@echo "$(GREEN)Initializing development environment...$(NC)"