Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions authbridge/demos/echo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ preflight: ## Verify kagenti is installed + tools are available
echo " Install: pip3 install --user pyyaml"; \
exit 1; \
}
@python3 -c 'import keycloak' 2>/dev/null || { \
echo "ERROR: python-keycloak is required (used later by setup-keycloak)."; \
echo " Install: pip install python-keycloak"; \
echo " Checked here in preflight so demo-echo fails before the"; \
echo " build/deploy steps rather than after them."; \
exit 1; \
}

# ---------- Sidecar (authbridge proxy) ----------

Expand Down
Loading