From 6824bded16ddf5e3ba7cae65cc6f40ba06b429fc Mon Sep 17 00:00:00 2001 From: bwnyasse <5323628+bwnyasse@users.noreply.github.com> Date: Sun, 16 Nov 2025 17:00:41 -0500 Subject: [PATCH] feat(Makefile): add data connect management commands to Makefile This commit introduces new commands to streamline Data Connect management, including enabling APIs, initializing Firebase, and deploying schemas. These commands enhance developer experience by providing easy-to-use shortcuts for common Data Connect tasks. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 6a8eb028..e734abdb 100644 --- a/Makefile +++ b/Makefile @@ -76,6 +76,11 @@ help: @echo " make create-issues-from-file - Bulk creates GitHub issues from a markdown file." @echo " make install-git-hooks - Installs git pre-push hook to protect main/dev branches." @echo "" + @echo " --- DATA CONNECT MANAGEMENT ---" + @echo " make dataconnect-enable-apis - Enables required GCP APIs for Data Connect." + @echo " make dataconnect-init - Initializes Firebase Data Connect (interactive wizard)." + @echo " make dataconnect-deploy - Deploys Data Connect schemas (GraphQL -> Cloud SQL)." + @echo "" @echo " --- BASE44 EXPORT WORKFLOW ---" @echo " make integrate-export - Integrates a new Base44 export from '../krow-workforce-export-latest'." @echo " make prepare-export - Prepares a fresh Base44 export for local use."